gc_disable

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

gc_disable停用循环引用收集器

描述

gc_disable(): void

停用循环引用收集器,将 zend.enable_gc 设置为 0

参数

此函数没有参数。

返回值

没有返回值。

参见

添加注释

用户贡献的注释 1 个注释

38
Lev Kitsis
9 年前
对于大型项目非常有用,当您创建大量应该保留在内存中的对象时。因此 GC 无法清理它们,只会浪费 CPU 时间。

Composer 中的问题
https://github.com/composer/composer/pull/3482#issuecomment-65199153

解决方案和人们的回复
https://github.com/composer/composer/commit/ac676f47f7bbc619678a29deae097b6b0710b799
To Top