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.
gc_enabled
(PHP 5 >= 5.3.0)
gc_enabled — 循環参照コレクタの状態を返す
説明
bool gc_enabled
( void
)
循環参照コレクタの状態を返します。
パラメータ
この関数にはパラメータはありません。
返り値
ガベージコレクタが有効な場合に TRUE、そうでない場合に FALSE を返します。
例
例1 gc_enabled() の例
<?php
if(gc_enabled()) gc_collect_cycles();
?>
Anonymous ¶
3 years ago
