php-src/Zend/tests/gc_024.phpt

18 lines
301 B
Plaintext
Raw Normal View History

2008-01-22 09:27:48 +00:00
--TEST--
GC 024: GC and objects with non-standard handlers
2010-03-03 17:53:15 +00:00
--INI--
zend.enable_gc=1
2008-01-22 09:27:48 +00:00
--SKIPIF--
<?php if (!extension_loaded("spl")) print "skip SPL extension required"; ?>
2008-01-22 09:27:48 +00:00
--FILE--
<?php
$a = new ArrayObject();
$a[0] = $a;
unset($a);
var_dump(gc_collect_cycles());
echo "ok\n";
?>
--EXPECT--
int(2)
2008-01-22 09:27:48 +00:00
ok