mirror of
https://github.com/php/php-src.git
synced 2024-11-26 03:16:33 +08:00
21 lines
255 B
PHP
21 lines
255 B
PHP
--TEST--
|
|
GC 005: Simple object cycle
|
|
--INI--
|
|
zend.enable_gc=1
|
|
--FILE--
|
|
<?php
|
|
$a = new stdClass();
|
|
$a->a = $a;
|
|
var_dump($a);
|
|
unset($a);
|
|
var_dump(gc_collect_cycles());
|
|
echo "ok\n"
|
|
?>
|
|
--EXPECTF--
|
|
object(stdClass)#%d (1) {
|
|
["a"]=>
|
|
*RECURSION*
|
|
}
|
|
int(1)
|
|
ok
|