- simplexml_load_string: documentation ( source)
- print_r: documentation ( source)
<?php
$xml=simplexml_load_string(<<<XML
<root>
<item>
<price>88</price>
<newprice>88</newprice>
</item>
<item>
<price>88</price>
<newprice>45</newprice>
</item>
<item>
<price>88</price>
<newprice>145</newprice>
</item>
</root>
XML
);
foreach($xml->xpath('//newprice[number(text())<number(../price/text())]') as $node)
{
print_r((string)$node);
}