| Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/ |
| Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/gc_024.phpt |
--TEST-- GC 024: GC and objects with non-standard handlers --INI-- zend.enable_gc=1 --FILE-- <?php $a = new ArrayObject(); $a[0] = $a; unset($a); var_dump(gc_collect_cycles()); echo "ok\n"; ?> --EXPECT-- int(2) ok