php-src/Zend/tests/gc_007.phpt

23 lines
290 B
Plaintext
Raw Normal View History

2008-01-22 09:29:29 +00:00
--TEST--
GC 007: Unreferenced array cycle
2010-03-03 17:53:15 +00:00
--INI--
zend.enable_gc=1
2008-01-22 09:29:29 +00:00
--FILE--
<?php
$a = array(array());
$a[0][0] =& $a[0];
var_dump($a[0]);
var_dump(gc_collect_cycles());
unset($a);
var_dump(gc_collect_cycles());
echo "ok\n"
?>
--EXPECT--
array(1) {
[0]=>
*RECURSION*
2008-01-22 09:29:29 +00:00
}
int(0)
int(1)
ok