Is there any plan in PHP to implement the following??:
// This doesn't work $name = $obj->getNode($id)->getNodeName();
// So you have to do this $node = $obj->getNode($id); $name = $node->getNodeName();
Hate using those temporary variables.....
This will be implemented in Zend Engine 2, which should be around in PHP 5.