gc_status Gets information about the garbage collector

发表日期:2021-07-01 08:55:06 | 来源: | | 浏览(591) 分类:PHP 选项/信息 函数

gc_status

(PHP 7 >= 7.3.0, PHP 8)

gc_statusGets information about the garbage collector

说明

gc_status(): array

Gets information about the current state of the garbage collector.

参数

此函数没有参数。

返回值

Returns an associative array with the following elements:

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

范例

示例 #1 gc_status() Usage

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


以上例程的输出类似于:

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

参见

  • Garbage Collection

集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。