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 — Returns status of the circular reference collector
설명
bool gc_enabled
( void
)
Warning
이 함수는 현재 문서화 되어있지 않습니다; 인수 목록만을 제공합니다.
Returns status of the circular reference collector.
인수
이 함수는 인수가 없습니다.
반환값
Returns TRUE if the garbage collector is enabled, FALSE otherwise.
gc_enabled
Anonymous
03-Jul-2009 03:48
03-Jul-2009 03:48
