carno-php/timer

1.0.0 2018-08-15 09:28 UTC

This package is auto-updated.

Last update: 2024-04-17 21:05:18 UTC


README

Installation

composer require carno-php/timer

Usages

$id = Timer::loop(10, function () {
    echo 'triggering every 10ms', PHP_EOL;
});
Timer::after(500, function () use ($id) {
    echo 'trigger once after 500ms', PHP_EOL;
    echo 'and clear previous created loop timer', PHP_EOL;
    Timer::clear($id);
});