mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
18 lines
301 B
PHP
18 lines
301 B
PHP
--TEST--
|
|
GC 024: GC and objects with non-standard handlers
|
|
--INI--
|
|
zend.enable_gc=1
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("spl")) print "skip SPL extension required"; ?>
|
|
--FILE--
|
|
<?php
|
|
$a = new ArrayObject();
|
|
$a[0] = $a;
|
|
unset($a);
|
|
var_dump(gc_collect_cycles());
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECT--
|
|
int(2)
|
|
ok
|