php-src/ext/simplexml/examples/xpath.php

10 lines
168 B
PHP
Raw Normal View History

<?php
$books = simplexml_load_file('book.xml');
$xpath_result = $books->xsearch("/books/book/title");
foreach($xpath_result as $entry ) {
print "$entry \n";
}
?>