PHP Options/Info Funzioni
PHP Manual

gc_enabled

(PHP 5 >= 5.3.0)

gc_enabledReturns status of the circular reference collector

Descrizione

bool gc_enabled ( void )

Returns status of the circular reference collector.

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

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

Esempi

Example #1 A gc_enabled() example

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

Vedere anche:


PHP Options/Info Funzioni
PHP Manual