mirror of
https://github.com/php/php-src.git
synced 2024-12-05 07:46:06 +08:00
28 lines
533 B
PHP
Executable File
28 lines
533 B
PHP
Executable File
--TEST--
|
|
Bug #31926 (php in free() error with RecursiveArrayIterator)
|
|
--FILE--
|
|
<?php
|
|
|
|
$array = array(0 => array('world'));
|
|
|
|
class RecursiveArrayIterator extends ArrayIterator implements
|
|
RecursiveIterator {
|
|
function hasChildren() {
|
|
return (is_array($this->current()));
|
|
}
|
|
|
|
function getChildren() {
|
|
return new self($this->current());
|
|
}
|
|
}
|
|
|
|
$it = new RecursiveIteratorIterator(new RecursiveArrayIterator($array));
|
|
foreach($it as $key => $val) {
|
|
var_dump($key, $val);
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(0)
|
|
string(5) "world"
|