php-src/Zend/tests/each_003.phpt

25 lines
235 B
Plaintext
Raw Normal View History

2008-05-12 17:57:21 +00:00
--TEST--
Testing each() with recursion
--FILE--
<?php
$a = array(array());
$a[] =& $a;
var_dump(each($a[1]));
?>
--EXPECTF--
array(4) {
[1]=>
array(0) {
}
["value"]=>
array(0) {
}
[0]=>
int(0)
["key"]=>
int(0)
}