demo_func_simplexml_children2.php:
<!DOCTYPE html> <html> <body> <?php $note=<<<XML <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body><span>Important!</span> Do not forget me this weekend!</body> </note> XML; $xml=simplexml_load_string($note); foreach ($xml->body[0]->children() as $child) { echo "Child node: " . $child . "<br>"; } ?> </body> </html>