You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
305 B

--TEST--
SPL: RecursiveCachingIterator and uninitialized getChildren()
--FILE--
<?php
$it = new RecursiveCachingIterator(new RecursiveArrayIterator(array(1,2)));
var_dump($it->getChildren());
$it->rewind();
var_dump($it->getChildren());
?>
===DONE===
<?php exit(0); ?>
--EXPECTF--
NULL
NULL
===DONE===