php-src/Zend/tests/gc_009.phpt

28 lines
384 B
Plaintext
Raw Normal View History

2008-01-22 09:27:48 +00:00
--TEST--
GC 009: Unreferenced array-object cycle
2010-03-03 17:53:15 +00:00
--INI--
zend.enable_gc=1
2008-01-22 09:27:48 +00:00
--FILE--
<?php
$a = array();
$a[0] = new stdClass();
$a[0]->a = array();
$a[0]->a[0] =& $a[0];
var_dump($a[0]);
var_dump(gc_collect_cycles());
unset($a);
var_dump(gc_collect_cycles());
echo "ok\n"
?>
--EXPECTF--
object(stdClass)#%d (1) {
2008-01-22 09:27:48 +00:00
["a"]=>
array(1) {
[0]=>
*RECURSION*
2008-01-22 09:27:48 +00:00
}
}
int(0)
int(2)
ok