3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = '<?xml version="1.0" encoding="UTF-8"?> <book> <section> <p>Example text</p> <p>Another text</p> <img href="imagehref"> <p>Textual content</p> </section> </book>'; $xml = simplexml_load_string($xml); foreach($xml->xpath('/section') as $section) { echo 'Got section', "\n"; foreach($section->children() as $node) { echo $node->getName(), "\n"; } }

preferences:
48.91 ms | 402 KiB | 5 Q