PHP 8.3.0 RC 6 available for testing

gc_status

(PHP 7 >= 7.3.0, PHP 8)

gc_status获取有关垃圾回收的信息

说明

gc_status(): array

获取有关当前垃圾收集状态的信息。

参数

此函数没有参数。

返回值

返回包含以下元素的关联数组:

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

示例

示例 #1 gc_status() 用法

<?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)
}

参见

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top