php-src/ext/spl/tests/iterator_033.phpt
Marcus Boerger 7dc322754a - Fix issues with not/double calling of constructors of SPL iterators
- Fix issues with info-class/file-class in SPL directory handling classes
- Add SimpleXMLElement::count()
- Drop erroneous RecursiveDirectoryIterator::getSubPathInfo()
- Drop dead code
- Add tests
- Update docu
2006-03-05 17:39:49 +00:00

47 lines
612 B
PHP
Executable File

--TEST--
SPL: ParentIterator
--SKIPIF--
<?php if (!extension_loaded("spl")) print "skip"; ?>
--FILE--
<?php
$it = new ParentIterator(new RecursiveArrayIterator(array(1,array(21,22, array(231)),3)));
foreach(new RecursiveIteratorIterator($it) as $k=>$v)
{
var_dump($k);
var_dump($v);
}
echo "==SECOND==\n";
foreach(new RecursiveIteratorIterator($it, 1) as $k=>$v)
{
var_dump($k);
var_dump($v);
}
?>
===DONE===
<?php exit(0); ?>
--EXPECT--
==SECOND==
int(1)
array(3) {
[0]=>
int(21)
[1]=>
int(22)
[2]=>
array(1) {
[0]=>
int(231)
}
}
int(2)
array(1) {
[0]=>
int(231)
}
===DONE===