3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml_string = '<?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_string); foreach($xml->xpath('//section') as $section) { foreach($section->children() as $node) { echo $node->getName(), "\n"; } }

preferences:
19.46 ms | 402 KiB | 5 Q