rryqszq4 / ngx-php

ngx-php - Embedded php7 or php8 scripting language for nginx module. Mainline development version of the ngx-php.
BSD 2-Clause "Simplified" License
643 stars 55 forks source link

[enhancement] Add a timer event #141

Open joanhey opened 2 years ago

joanhey commented 2 years ago
Timer::add($time_interval, function () {
        echo "Timer run";
    });

https://www.nginx.com/resources/wiki/extending/api/event/#ngx-add-timer using a strtotime() for $time_interval https://www.php.net/manual/en/function.strtotime.php#refsect1-function.strtotime-examples

Also a recurring timer.

Thanks for your great job.