<?php $str=<<<XML <root> <A> <someid>5</someid> </A> <B> <someid>15</someid> </B> </root> XML; $xml=simplexml_load_string($str); foreach($xml->xpath('//someid[text()="5"]') as $node) { echo $node; }
You have javascript disabled. You will not be able to edit any code.