mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
12 lines
152 B
PHP
12 lines
152 B
PHP
--TEST--
|
|
GC 031: gc_collect_roots() with GC turned off.
|
|
--INI--
|
|
zend.enable_gc=0
|
|
--FILE--
|
|
<?php
|
|
gc_collect_cycles();
|
|
echo "DONE\n";
|
|
?>
|
|
--EXPECTF--
|
|
DONE
|