mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
14 lines
170 B
PHP
14 lines
170 B
PHP
--TEST--
|
|
GC 025: Automatic GC on request shutdown
|
|
--INI--
|
|
zend.enable_gc=1
|
|
--FILE--
|
|
<?php
|
|
$a = array(array());
|
|
$a[0][0] =& $a[0];
|
|
unset($a);
|
|
echo "ok\n"
|
|
?>
|
|
--EXPECT--
|
|
ok
|