CakeFest 2024: The Official CakePHP Conference

gc_enabled

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

gc_enabledDöngüsel gönderim toplayıcısının durumunu döndürür

Açıklama

gc_enabled(): bool

Döngüsel gönderim toplayıcısının (çöp toplayıcı) durumunu döndürür.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Çöp toplayıcı etkinse true değilse false döner.

Örnekler

Örnek 1 - gc_enabled() örneği

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

Ayrıca Bakınız

add a note

User Contributed Notes 1 note

up
0
Anonymous
14 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