iterator_006.phpt 317 B

123456789101112131415161718192021
  1. --TEST--
  2. SPL: IteratorIterator and SimpleXMlElement
  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 (new IteratorIterator($root->child) as $child) {
  14. echo $child."\n";
  15. }
  16. ?>
  17. --EXPECT--
  18. Hello
  19. World