According to the manual:
Returns a SimpleXMLElement element, whether the node has children or not.
But first of all, this doesn't make sense to me. children() should surely return an array of SimpleXMLElements. If the node has more than one child, how can returning a single SimpleXMLElement possibly represent that?
Second of all, that doesn't tie in with the example that follows in the manual:
foreach ($xml->children() as $second_gen)
echo ' The person begot a ' . $second_gen['role'];
How can you foreach through a SimpleXMLElement? I thought you could only do that with arrays? Also, what the heck's going on with the $second_gen values? So children() returns an array of associative arrays...?
There must be some somewhat deep PHP grammar rules going on here that I'm not aware of so please explain or point me to the relevant manual pages.