thinkphp6实现定时任务
- 创建定时任务文件
- 定义指令
- 编写Test.php代码
- 运行测试
创建定时任务文件
Test类名根据自己的需要修改
php think make:command Test test
command文件夹在app目录下没有需要自己创建
运行上面的命令后会在command下 多一个Test.php文件
定义指令
在config下console.php中添加指令
// +----------------------------------------------------------------------
return [// 指令定义'commands' => ['test' => 'app\command\Test'],
];
编写Test.php代码
直接来一个简单粗暴的代码
这个我在execute里面直接来了个while(true)方便测试
里面跟需要定时执行的代码
<?php
declare (strict_types = 1);namespace app\command;use think\console\Command;
use think\console\Input;
use think\console\input\Argument;
use think\console\input\Option;
use think\console\Output;class Test extends Command
{protected function configure(){// 指令配置$this->setName('test')->setDescription('the test command');}protected function execute(Input $input, Output $output){// 指令输出$a = 1;while (true) {$output->writeln((string) $a++);sleep(1);}}
}
运行测试
php think test