gc_status

(PHP 7 >= 7.3.0)

gc_statusGets information about the garbage collector

Açıklama

gc_status ( void ) : array

Gets information about the current state of the garbage collector.

Değiştirgeler

Bu işlevin değiştirgesi yoktur.

Dönen Değerler

Returns an associative array with the following elements:

  • "runs"
  • "collected"
  • "threshold"
  • "roots"

Örnekler

Örnek 1 gc_status() Usage

<?php

// create object tree that needs gc collection
$a = new stdClass();
$a->= [];
for (
$i 0$i 100000$i++) {
    
$b = new stdClass();
    
$b->$a;
    
$a->b[] = $b;
}
unset(
$a);
unset(
$b);
gc_collect_cycles();

var_dump(gc_status());

Yukarıdaki örnek şuna benzer bir çıktı üretir:

array(4) {
  ["runs"]=>
  int(5)
  ["collected"]=>
  int(100002)
  ["threshold"]=>
  int(50001)
  ["roots"]=>
  int(0)
}

Ayrıca Bakınız