PHP 8.4.0 RC4 available for testing

gc_enabled

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

gc_enabledRetorna o status do coletor de referência circular

Descrição

gc_enabled(): bool

Retorna o status do coletor de referência circular.

Parâmetros

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

Valor Retornado

Retorna true se o coletor de lixo estiver habilitado, false caso contrário.

Exemplos

Exemplo #1 Um exemplo de gc_enabled()

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

Veja Também

adicione uma nota

Notas Enviadas por Usuários (em inglês) 1 note

up
0
Anonymous
15 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.
To Top