php 实现简单的自定义计划任务组件 crontab-jobs
2021/12/4 12:46:31
本文主要是介绍php 实现简单的自定义计划任务组件 crontab-jobs,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
2021年12月4日10:22:18
gitee包地址:https://gitee.com/open-php/crontab-jobs
两个包总共才几个文件,性能消耗小,包小,特别适合做一些服务组件
支持composer
composer require zx/crontab-jobs dev-master
crontab-jobs 介绍 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
这篇关于php 实现简单的自定义计划任务组件 crontab-jobs的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-19php8的协程和hyperf的协程有什么区别?-icode9专业技术文章分享
- 2024-12-19php8 的fiber是什么?-icode9专业技术文章分享
- 2024-12-05怎么在php8,1 里面开启 debug?-icode9专业技术文章分享
- 2024-12-05怎么在php8,1 里面开启 debug?-icode9专业技术文章分享
- 2024-11-29使用PHP 将ETH账户的资产汇集到一个账户
- 2024-11-23怎么实现安卓+php 热更新方案?-icode9专业技术文章分享
- 2024-11-22PHP 中怎么实现判断多个值是否为空、null 或者为 false?-icode9专业技术文章分享
- 2024-11-11开源 PHP 商城项目 CRMEB 二次开发和部署教程
- 2024-11-09怎么使用php在kaufland平台刊登商品?-icode9专业技术文章分享
- 2024-11-05PHP的抽象类和接口是什么,有什么区别-icode9专业技术文章分享