<?php $xmlStr = '<root><node> <child1></child1> <findme>first</findme> <child2></child2> </node> <node> <child1> <findme>second</findme> </child1> <child2></child2> </node> <node> <child1></child1> <child2> <another> <findme>third</findme> </another> </child2> </node></root>'; $xml = new SimpleXMLElement($xmlStr); $result = $xml->xpath('//findme'); foreach($result as $elem) { echo $elem."\r"; } ?>
You have javascript disabled. You will not be able to edit any code.