PHP 8.5.8 Released!

gc_enabled

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

gc_enabled返回循环引用计数器的状态

说明

function gc_enabled(): bool

返回循环引用计数器的状态。

参数

此函数没有参数。

返回值

如果垃圾收集器已启用则返回 true ,否则返回 false

示例

示例 #1 gc_enabled() 示例

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

发现了问题?

了解如何改进此页面提交拉取请求报告一个错误
+添加备注

用户贡献的备注 1 note

up
1
Anonymous
17 years ago
If I understand correctly, the php.ini parameter zend.enable_gc (see http://www.php.net/manual/en/info.configuration.php) determines whether garbage collection is enabled:
<?php
var_dump(gc_enabled());
ini_set('zend.enable_gc', 0);
var_dump(gc_enabled());
?>

In PHP 5.3.0 this prints:
bool(true)
bool(false)
Oh, and of course gc_enable() and gc_disable() turn on or off the collection of garbage.
+添加备注

AltStyle によって変換されたページ (->オリジナル) /