In the ZEND Reference Guide I saw this:
$select = $db->select()->from('posts')->order('date_created DESC');
Now I'm wondering: what does that second arrow do? What does using more than one arrow when working with an object do? And can I use it all the times? For example
$myclass->function()->anotherfunction()->hello;
?