PHP code example of jackapi / phpcrontab

1. Go to this page and download the library: Download jackapi/phpcrontab 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/ */

    

jackapi / phpcrontab example snippets


composer 

cron解析 https://github.com/dragonmantank/cron-expression



//crontab表达式 名称 类 执行方法
$crontabData = [
    'debug' => true,
    'log' => "./1.log",
    'cache_data' => "./cache.data",
    'pid' => "./timer.pid",
    'swoole_tick' => [true, 1000],
    ['*/1 * * * *', 'test1', new \Jackapi\testCrontab(), 'whileTest'],
    ['*/2 * * * *', 'test2', new \Jackapi\testCrontab(), 'getDate'],
    ['*/3 * * * *', 'test3', 'date', ''],

];
$crontab = new Jackapi\phpcrontab($crontabData);
$crontab->run();


新增swoole定时器
终止swoole定时器