The double arrow operator is used to access the value of an array item.
<?php
$myArray = array(
0 => 'Big'
);
?>
The object operator, is used in object scope to access methods and properties of an object.
$json = {
"foo": "bar"
};
echo $json->{'foo'}; // "bar"