3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xml = "<root> <parent> <child name='Child1' /> <child name='Child2' > <subparent name='subchild'> naiya </subparent> </child> </parent> <child name='Child4' /> </root>"; $xml = simplexml_load_string( $xml); echo $xml->xpath( '//child[@name="Child2"]'); foreach( $xml->xpath( '//child[@name="Child2"]/subparent') as $child) { echo $child . "\n"; }

preferences:
44.83 ms | 402 KiB | 5 Q