zx / crontab-jobs
php计划任务组件
dev-master
2021-12-04 04:13 UTC
Requires
- php: ^8.0
- poliander/cron: ^2.3
This package is auto-updated.
Last update: 2025-04-04 11:27:15 UTC
README
介绍
PHP定时任务组件
后续需要新增的功能
1,支持日志功能
2,支持任务重试功能
3,支持任务互斥锁
使用
use Zx\CrontabJobs\Command;
use Zx\CrontabJobs\Kernel;
use Cron\CronExpression;
ini_set('date.timezone', 'Asia/Shanghai');
class t1 extends Command
{
private string $contab;
private string $retry;
public function __construct(string $contab = '', int $retry = 0)
{
$this->contab = $contab;
$this->retry = $retry;
}
public function handle()
{
print_r(self::class);
echo PHP_EOL;
print_r(date('Y-m-d H:i:s'));
echo PHP_EOL;
}
public function getRetry()
{
return $this->retry;
}
public function getCrontab()
{
return $this->contab;
}
}
class t2 extends Command
{
private string $contab;
private string $retry;
public function __construct(string $contab = '', int $retry = 0)
{
$this->contab = $contab;
$this->retry = $retry;
}
public function handle()
{
print_r(self::class);
echo PHP_EOL;
print_r(date('Y-m-d H:i:s'));
echo PHP_EOL;
}
public function getRetry()
{
return $this->retry;
}
public function getCrontab()
{
return $this->contab;
}
}
$t1 = new t1('* * * * *', 0);
$t2 = new t2('*/5 * * * *', 0);
Kernel::register($t1);
Kernel::register($t2);
Kernel::run('now', new DateTimeZone('Asia/Shanghai'));
业务脚本继承Command之后,就可以直接注册到Kernel 然后直接调用
Kernel::run('now', new DateTimeZone('Asia/Shanghai'));
支持时区切换
添加计划任务
* * * * * cd /data/code/crontab-jobs/tests && /usr/local/php80/bin/php /data/code/crontab-jobs/tests/test.php >> /data/crontab.log
指定特定用户执行
* * * * * sudo -u www && cd /data/code/crontab-jobs/tests && /usr/local/php80/bin/php /data/code/crontab-jobs/tests/test.php >> /data/crontab.log