mirror of
https://github.com/php/php-src.git
synced 2025-01-07 19:44:02 +08:00
16 lines
253 B
PHP
16 lines
253 B
PHP
--TEST--
|
|
GC 024: GC and objects with non-standard handlers
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("spl")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
$a = new ArrayObject();
|
|
$a[0] = $a;
|
|
unset($a);
|
|
var_dump(gc_collect_cycles());
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECT--
|
|
int(1)
|
|
ok
|