
| Path : /proc/self/root/usr/src/php/ext/simplexml/examples/ |
| Current File : //proc/self/root/usr/src/php/ext/simplexml/examples/xpath.php |
<?php
$books = simplexml_load_file('book.xml');
$xpath_result = $books->xpath("/books/book/title");
foreach($xpath_result as $entry ) {
print "$entry \n";
}
?>