php-src/Zend/tests/gc_015.phpt
Ilia Alshanetsky 4534cd6807 WS
2008-04-09 23:35:19 +00:00

19 lines
224 B
PHP

--TEST--
GC 015: Object as root of cycle
--FILE--
<?php
$a = new stdClass();
$c =& $a;
$b = $a;
$a->a = $a;
$a->b = "xxx";
unset($c);
unset($a);
unset($b);
var_dump(gc_collect_cycles());
echo "ok\n";
?>
--EXPECT--
int(2)
ok