1
2
3
4
5
<?php
$xml = simplexml_load_string($data);
$result = $xml->xpath('//lastBuildDate');
list( , $node) = each($result);
echo $node;