update : 2015.11.03
php.shukuma.com

검색:
 
 
Returns status of the circular reference collector

gc_enabled

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

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();
?>