1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/ext/simplexml/examples/xpath.php
Christian Stocker 4e5d4006fd - added interop between DOM and SimpleXML example
- added xpath example
2003-10-26 19:15:52 +00:00

10 lines
168 B
PHP

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