
| Path : /usr/src/php/Zend/tests/ |
| Current File : //usr/src/php/Zend/tests/gc_019.phpt |
--TEST-- GC 019: GC detach with assign by reference --INI-- zend.enable_gc=1 --FILE-- <?php $a = array(array()); $a[0][0] =& $a[0]; $b = 1; $a =& $b; var_dump(gc_collect_cycles()); echo "ok\n" ?> --EXPECT-- int(1) ok