summaryrefslogtreecommitdiff
path: root/ext/spl/tests/iterator_033.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/tests/iterator_033.phpt')
-rwxr-xr-xext/spl/tests/iterator_033.phpt46
1 files changed, 0 insertions, 46 deletions
diff --git a/ext/spl/tests/iterator_033.phpt b/ext/spl/tests/iterator_033.phpt
deleted file mode 100755
index c1880cb2fb..0000000000
--- a/ext/spl/tests/iterator_033.phpt
+++ /dev/null
@@ -1,46 +0,0 @@
---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===