php-src/Zend/tests/gc_005.phpt
Steph Fox 6d8760677d - killed off UEXPECT
- altered EXPECT for parser errors. This may or may not be a Good Thing.
2008-05-26 14:33:44 +00:00

22 lines
275 B
PHP

--TEST--
GC 005: Simple object cycle
--FILE--
<?php
$a = new stdClass();
$a->a = $a;
var_dump($a);
unset($a);
var_dump(gc_collect_cycles());
echo "ok\n"
?>
--EXPECT--
object(stdClass)#1 (1) {
[u"a"]=>
object(stdClass)#1 (1) {
[u"a"]=>
*RECURSION*
}
}
int(1)
ok