jinyicheng / thinkphp_cron
计划任务
v1.0.1
2020-08-25 04:34 UTC
Requires
- mtdowling/cron-expression: ^1.2
- nesbot/carbon: ^2.28
- symfony/process: ^4.4
- topthink/framework: ^6.0
This package is auto-updated.
Last update: 2024-10-25 14:11:23 UTC
README
安装方法
composer require jinyicheng/thinkphp_cron
使用方法
创建任务类
<?php
namespace app\tasks;
use jinyicheng\cron\Task;
class DemoTask extends Task
{
public function configure()
{
$this->daily(); //设置任务的周期,每天执行一次,更多的方法可以查看源代码,都有注释
}
/**
* 执行任务
* @return mixed
*/
protected function execute()
{
//...具体的任务执行
}
}
配置
配置文件位于 application/config/cron.php
return [
'tasks' => [
\app\tasks\DemoTask::class, //任务的完整类名
]
];
任务监听方式
方式方法:
方式1
起一个常驻进程,可以配合supervisor使用
php think cron:schedule
方法二
在系统的计划任务里添加
* * * * * php /path/to/think cron:run >> /dev/null 2>&1