mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
For rationale, see #6787 Extensions migrated in part 4: * simplexml * skeleton * soap * spl * sqlite3 * sysvmsg * sysvsem * tidy - also removed a check for an ancient dependency version
22 lines
317 B
PHP
22 lines
317 B
PHP
--TEST--
|
|
SPL: IteratorIterator and SimpleXMlElement
|
|
--EXTENSIONS--
|
|
simplexml
|
|
--FILE--
|
|
<?php
|
|
|
|
$root = simplexml_load_string('<?xml version="1.0"?>
|
|
<root>
|
|
<child>Hello</child>
|
|
<child>World</child>
|
|
</root>
|
|
');
|
|
|
|
foreach (new IteratorIterator($root->child) as $child) {
|
|
echo $child."\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Hello
|
|
World
|