3v4l.org

run code in 300+ PHP versions simultaneously
<?php $note=<<<XML <note> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note> XML; $xml=simplexml_load_string($note); foreach ($xml->children() as $child) { echo "Child node: " . $child . "<br>"; } ?>

preferences:
36.26 ms | 402 KiB | 5 Q