profile02.phpt 337 B

123456789101112131415161718192021
  1. --TEST--
  2. SimpleXML [profile]: Accessing an array of subnodes
  3. --EXTENSIONS--
  4. simplexml
  5. --FILE--
  6. <?php
  7. $root = simplexml_load_string('<?xml version="1.0"?>
  8. <root>
  9. <child>Hello</child>
  10. <child>World</child>
  11. </root>
  12. ');
  13. foreach ($root->child as $child) {
  14. echo "$child ";
  15. }
  16. echo "\n---Done---\n";
  17. ?>
  18. --EXPECT--
  19. Hello World
  20. ---Done---