PHP 8.6.0 Beta 3 is available for testing

Swoole\Timer::tick

(PECL swoole >= 1.9.0)

Swoole\Timer::tickSet a repeating interval timer

Descrizione

public static function Swoole\Timer::tick(int $ms, callable $callback, mixed ...$params): int|false

Sets a timer that triggers every ms milliseconds. Unlike a timer created with Swoole\Timer::after(), it keeps triggering until it is removed with Swoole\Timer::clear().

Elenco dei parametri

ms

The interval in milliseconds. Must be greater than or equal to 1; a lower value emits an E_WARNING and the call fails.

callback

The function to execute on every tick. It is called as callback(int $timer_id, mixed ...$params): the ID of the timer is passed as the first argument, followed by the values given in params.

params

Additional values passed to callback after the timer ID.

Valori restituiti

Returns the timer ID, which can be passed to Swoole\Timer::clear(). Returns false if the timer could not be created, in particular when ms is less than 1.

Esempi

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

<?php
$ticks = 0;
Swoole\Timer::tick(1000, function (int $timer_id, string $label) use (&$ticks) {
    echo "tick #", ++$ticks, " ($label)\n";
    if ($ticks === 3) {
        Swoole\Timer::clear($timer_id);
    }
}, "job");
?>

Il precedente esempio visualizzerà:

tick #1 (job)
tick #2 (job)
tick #3 (job)
add a note

User Contributed Notes

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