php-src/Zend/tests/gc_011.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

29 lines
350 B
PHP

--TEST--
GC 011: GC and destructors
--FILE--
<?php
class Foo {
public $a;
function __destruct() {
echo __FUNCTION__,"\n";
}
}
$a = new Foo();
$a->a = $a;
var_dump($a);
unset($a);
var_dump(gc_collect_cycles());
echo "ok\n"
?>
--EXPECT--
object(Foo)#1 (1) {
[u"a"]=>
object(Foo)#1 (1) {
[u"a"]=>
*RECURSION*
}
}
__destruct
int(1)
ok