PHP 8.6.0 Beta 3 is available for testing

Swoole\Timer::clear

(PECL swoole >= 1.9.0)

Swoole\Timer::clearDelete a timer by ID

说明

public static function Swoole\Timer::clear(int $timer_id): bool

Deletes the timer with the given ID. Only timers created by the current process can be removed; timers belonging to other processes are not visible here.

参数

timer_id

The timer ID returned by Swoole\Timer::tick() or Swoole\Timer::after().

返回值

成功时返回 true, 或者在失败时返回 falsefalse is returned when no timer with this ID exists in the current process, or when the ID refers to an internal timer.

示例

示例 #1 Swoole\Timer::clear() example

<?php
$timer_id = Swoole\Timer::after(1000, function () {
    echo "never printed\n";
});
var_dump(Swoole\Timer::clear($timer_id));
?>

以上示例会输出:

bool(true)
添加备注

用户贡献的备注

此页面尚无用户贡献的备注。
To Top