(No version information available, might only be in Git)
Swoole\Timer::stats — Get timer statistics.
Returns an array with the following keys:
initialized
Whether the timer subsystem has been started. It is false until the
first timer is created.
numThe number of timers currently registered in the process.
roundThe current round of the timer loop.
示例 #1 Swoole\Timer::stats() example
<?php
$timer_id = Swoole\Timer::tick(1000, function () {});
var_dump(Swoole\Timer::stats());
Swoole\Timer::clear($timer_id);
?>以上示例的输出类似于:
array(3) {
["initialized"]=>
bool(true)
["num"]=>
int(1)
["round"]=>
int(0)
}