php-src/Zend/tests/gc_014.phpt
2020-02-03 22:52:20 +01:00

21 lines
293 B
PHP

--TEST--
GC 014: Too many cycles in one object
--INI--
zend.enable_gc=1
--FILE--
<?php
$a = new stdClass();
for ($i = 0; $i < 10001; $i++) {
$b =& $a;
$a->{"a".$i} = $a;
}
unset($b);
$a->b = "xxx";
unset($a);
var_dump(gc_collect_cycles() > 0);
echo "ok\n";
?>
--EXPECT--
bool(true)
ok