php-src/Zend/tests/gc_026.phpt
2008-01-22 09:29:29 +00:00

15 lines
208 B
PHP

--TEST--
GC 026: Automatic GC on request shutdown (GC enabled at run-time)
--INI--
zend.enable_gc=0
--FILE--
<?php
gc_enable();
$a = array(array());
$a[0][0] =& $a[0];
unset($a);
echo "ok\n"
?>
--EXPECT--
ok