profile04.phpt 342 B

123456789101112131415161718
  1. --TEST--
  2. SimpleXML [profile]: Accessing a namespaced element
  3. --EXTENSIONS--
  4. simplexml
  5. --FILE--
  6. <?php
  7. $root = simplexml_load_string('<?xml version="1.0"?>
  8. <root xmlns:reserved="reserved-ns">
  9. <reserved:child>Hello</reserved:child>
  10. </root>
  11. ');
  12. echo $root->children('reserved-ns')->child;
  13. echo "\n---Done---\n";
  14. ?>
  15. --EXPECT--
  16. Hello
  17. ---Done---