php-src/Zend/tests/gc_015.phpt

21 lines
257 B
Plaintext
Raw Normal View History

2008-01-22 09:27:48 +00:00
--TEST--
2008-04-09 23:35:19 +00:00
GC 015: Object as root of 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 = new stdClass();
$c =& $a;
$b = $a;
$a->a = $a;
$a->b = "xxx";
unset($c);
unset($a);
unset($b);
var_dump(gc_collect_cycles() > 0);
2008-01-22 09:27:48 +00:00
echo "ok\n";
?>
--EXPECT--
bool(true)
2008-01-22 09:27:48 +00:00
ok