Funções para Opções/Info do PHP
PHP Manual

gc_enabled

(PHP 5 >= 5.3.0)

gc_enabledReturns status of the circular reference collector

Descrição

bool gc_enabled ( void )

Returns status of the circular reference collector.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Returns TRUE if the garbage collector is enabled, FALSE otherwise.

Exemplos

Exemplo #1 A gc_enabled() example

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

Veja Também


Funções para Opções/Info do PHP
PHP Manual