summaryrefslogtreecommitdiff
path: root/ext/simplexml/examples/xpath.php
blob: 23253d7b74afe0835a8e802e8118b2f1569b8992 (plain)
1
2
3
4
5
6
7
8
9
<?php
$books = simplexml_load_file('book.xml');

$xpath_result = $books->xsearch("/books/book/title");
foreach($xpath_result as $entry ) {
    print "$entry \n";
}

?>