php think crontab,crontab 定时

tp 基于crontab实现定时任务

一.第一种方法

1.在/application/command创建要配置的PHP类文件,需要继承Command类,并重写configure和execute两个方法,例如:

namespace app\command;

use think\console\Command;

use think\console\Input;

use think\console\Output;

use think\Db;

class Test extends Command{

// 配置定时器的信息

protected function configure() {

$this->setName('test') ->setDescription('Command Test');

}

protected function execute(Input $input, Output $output) {

// 输出到日志文件

$output->writeln("TestCommand:");

// 定时器需要执行的内容

$output->writeln("end....");

}

}

2.修改application/command.php内容,加入上述的定时器内容

return [

'application\command\Test', // 加入需要cmd运行的PHP文件

];

3.添加shell执行文件

在项目根目录下创建shell脚本,例如crond.sh

#!/bin/sh

PATH=/usr/local/php/bin:/opt/someApp/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin # 将php路径加入都临时变量中

cd /home/wwwroot/域名/ # 进入项目的根目录下,保证可以运行php think的命令

php think test # 执行在Test.php设定的名称

4.使用crontab设置定时器

连接到服务器,输入 crontab -e,写入:

0 0 * * * /home/wwwroot/域名/crond.sh

5.重启crond服务

service crond restart

如果 该命令无法重启,请使用systemctl restart crond 进行重启

二. 第二种方法

1.新增Controller类,并编写相对应的方法,例如:

以下是Test Controller类,还有一个简单的test方法。

namespace app\demo\controller;

use think\Controller;

use think\Log;

class Test extends Controller

{

public function test(){

Log::error('start test crond demo.....');

Log::error('end test crond demo.....');

}

}

访问test方法的路由:demo/test/test

2.添加shell执行文件

在项目根目录下创建shell脚本,例如crond.sh

#!/bin/sh

PATH=/usr/local/php/bin:/opt/someApp/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

# 1.执行 php 命令不需要到thinkphp项目的目录下 2.index.php为入口文件 3.第三个参数为需要执行方法的路由

php /home/wwwroot/域名/index.php demo/test/test

后面的步骤从本文第4步开始,就可以完成定时功能

本作品采用《CC 协议》,转载必须注明作者和本文链接

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值