3v4l.org

run code in 300+ PHP versions simultaneously
<?php $string = <<<XML <a> <b> <c>text</c> <c>stuff</c> </b> <d> <c>code</c> </d> </a> XML; $xml = new SimpleXMLElement($string); $result = $xml->xpath('/a/b/c'); foreach ($result as $k => $v) echo $v . "\n"; while(list( , $node) = each($result)) { //echo '/a/b/c: ',$node,"\n"; //echo $node; } var_dump($result);

preferences:
35.47 ms | 402 KiB | 5 Q