PHP code example of sunsgne / timer

1. Go to this page and download the library: Download sunsgne/timer library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

sunsgne / timer example snippets



use Sunsgne\Timer;

::add( 5, function (...$p){
    var_dump(time());
    echo  "我是定时任务执行的方法" .PHP_EOL;
}, [time()],true , true);


var_dump(Timer::getTaskAll());
Timer::run();

while(1)
{
    sleep(1);
    pcntl_signal_dispatch();
}