You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
166 B

  1. <?php
  2. $books = simplexml_load_file('book.xml');
  3. $xpath_result = $books->xpath("/books/book/title");
  4. foreach($xpath_result as $entry ) {
  5. print "$entry \n";
  6. }
  7. ?>