PHP 选项/信息 函数
PHP Manual

gc_enabled

(PHP 5 >= 5.3.0)

gc_enabledReturns status of the circular reference collector

说明

bool gc_enabled ( void )

Returns status of the circular reference collector.

参数

此函数没有参数。

返回值

Returns TRUE if the garbage collector is enabled, FALSE otherwise.

范例

Example #1 A gc_enabled() example

<?php
if(gc_enabled()) gc_collect_cycles();
?>

参见


PHP 选项/信息 函数
PHP Manual