-> is used in OOP as the delimiter between an object name and the method/member within:
$object = new MyClass;
$object->variable // a class member
$object->function() // a class method
=> is used in arrays as the delimiter between keys and values:
$array = array(
'first_name' => 'John',
'middle_name' => 'Quidley',
'last_name' => 'Public'
);