summaryrefslogtreecommitdiff
path: root/Zend/tests/gc_026.phpt
blob: 330c4fa48c534e512d56caf4a99ca979ebe5d8c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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