博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ThinkPHP5实现定时任务
阅读量:5305 次
发布时间:2019-06-14

本文共 1036 字,大约阅读时间需要 3 分钟。

最近使用ThinkPHP5做了个项目,项目中需要定时任务的功能,感觉有必要分享下 

TP5做定时任务使用到command.php的 

步骤如下: 

1.配置command.php文件,位于application/command.php 

<?php namespace app\home\command; use think\console\Command; use think\console\Input; use think\console\Output; class Test extends Command {     protected function configure()     {         $this->setName('test')->setDescription('Here is the remark ');     }     protected function execute(Input $input, Output $output)     {  echo '已经开始了';         $output->writeln("TestCommand:");     } }

 

configure函数是在命令行中用list命令列出所有任务的时候回显示的出的提示,execute函数是说要执行的命令,在这里可以直接调用其他函数,完成例如统计等任务工作,然后用output输出到命令行 

3.运行test命令 

打开命令行,运行php think test命令test命令execute方法中运行的方法就会运行 

4.在入口文件处,新建bat文件,内容如下 

D: 

cd D:\phpStudy\WWW\OilTycoon 

php think test 

切换到D盘 

切换到项目根目录处 

运行test命令 

5.把bat文件加入到服务器的定时任务中

 

一、windows:

// 这里是跳转到项目目录

cd D:\WWW\ForeManApi php think spider

二、linux:

// 为think添加执行权限chmod +x /home/wwwroot/default/www.xxx.com/think crontab -e // 每一小时执行一次 0 */1 * * * /usr/local/php/bin/php /home/wwwroot/default/www.xxx.com/think spider

转载于:https://www.cnblogs.com/FLy-1992/p/11174675.html

你可能感兴趣的文章
Beta阶段项目总结
查看>>
Remove Duplicates from Sorted Array II
查看>>
Find Peak Element
查看>>
C# MD5一句话加密
查看>>
C#网络编程系列文章之Socket实现异步TCP服务器
查看>>
浅谈按位存储
查看>>
趣图:当客户第一次尝试应用程序时
查看>>
Sqlite(数据库)
查看>>
1070. 结绳(25)
查看>>
js函数节流和函数防抖
查看>>
点击出现闪烁
查看>>
Eclipse+Maven+Spring+CXF 构建webservice 服务
查看>>
聊聊Greenplum的那些事
查看>>
下起了雨
查看>>
Type of 'this' pointer in C++
查看>>
小记sql server临时表与表变量的区别
查看>>
大神校友心得
查看>>
主机管理+堡垒机系统开发:webssh(十)
查看>>
SQL语句中的判断(条件语句)
查看>>
03构建之法阅读笔记之三
查看>>