PHP Conference Ehime 2026

Swoole\Timer::clear

(PECL swoole >= 1.9.0)

Swoole\Timer::clearDelete a timer by ID

Descrizione

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.

Elenco dei parametri

timer_id

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

Valori restituiti

Restituisce true in caso di successo, false in caso di fallimento. false is returned when no timer with this ID exists in the current process, or when the ID refers to an internal timer.

Esempi

Example #1 Swoole\Timer::clear() example

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

Il precedente esempio visualizzerà:

bool(true)
add a note

User Contributed Notes

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