downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

get_cfg_var> <gc_enable
[edit] Last updated: Wed, 22 May 2013

view this page in

gc_enabled

(PHP 5 >= 5.3.0)

gc_enabledDevuelve el estado del colector de referencia circular

Descripción

bool gc_enabled ( void )

Devuelve el estado del colector de referencia circular.

Parámetros

Esta función no tiene parámetros.

Valores devueltos

Devuelve TRUE si el recolector de basura está activado, FALSE en caso contrario.

Ejemplos

Ejemplo #1 Ejemplo de gc_enabled()

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

Ver también



add a note add a note User Contributed Notes gc_enabled - [1 notes]
up
0
Anonymous
3 years ago
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.

 
show source | credits | sitemap | contact | advertising | mirror sites