1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/spl/tests/iterator_048.phpt
2020-02-03 22:52:20 +01:00

29 lines
544 B
PHP

--TEST--
SPL: RecursiveRegexIterator and exception in has/getChildren
--FILE--
<?php
class MyRecursiveRegexIterator extends RecursiveRegexIterator
{
function show()
{
foreach(new RecursiveIteratorIterator($this) as $k => $v)
{
var_dump($k);
var_dump($v);
}
}
}
$ar = new RecursiveArrayIterator(array('Foo', array('Bar'), 'FooBar', array('Baz'), 'Biz'));
$it = new MyRecursiveRegexIterator($ar, '/Bar/');
$it->show();
?>
--EXPECT--
int(0)
string(3) "Bar"
int(2)
string(6) "FooBar"