PHP code example of lvinkim / crontab
1. Go to this page and download the library: Download lvinkim/crontab 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/ */
lvinkim / crontab example snippets
$ vi /var/www/html/crontab.ini
[worker:1]
schedule = "* * * * *"
command = "/usr/bin/env php /var/www/html/tests/jobs/job-1.php"
enabled = 0
[worker:2]
schedule = "*/2 * * * *"
command = "/usr/bin/env php /var/www/html/tests/jobs/job-2.php"
enabled = 1
[worker:3]
schedule = "*/3 * * * *"
command = "/usr/bin/env php /var/www/html/tests/jobs/job-3.php"
enabled = 1
$ vi /var/www/html/crontab.php
use Lvinkim\Crontab\Crontab;
ontab = new Crontab($configPath);
$crontab->run(60 * 1000); // 每 60 秒
$ php /var/www/html/crontab.php