mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
a541bb8078
- Update README.PARAMETER_PARSING_API
25 lines
428 B
PHP
Executable File
25 lines
428 B
PHP
Executable File
--TEST--
|
|
SPL: IteratorIterator and SimpleXMlElement
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("spl") || !extension_loaded('simplexml')) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$root = simplexml_load_string(b'<?xml version="1.0"?>
|
|
<root>
|
|
<child>Hello</child>
|
|
<child>World</child>
|
|
</root>
|
|
');
|
|
|
|
foreach (new IteratorIterator($root->child) as $child) {
|
|
echo $child."\n";
|
|
}
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECT--
|
|
Hello
|
|
World
|
|
===DONE===
|