laravel计划任务
配置Corn
我们可以在服务器上通过 crontab -e 来新增或编辑 Cron 条目,通过 crontab -l 查看已存在的 Cron 条目
* * * * * php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1
踩坑点:我在配置这个的时候出现了不生效的情况,后来发现要把PHP目录也要加上。(个人环境问题)
生成脚本文件
一,查看命令:php artisan list
二, 创建新命令: php artisan make:command test
php artisan make:command test
在\app\Console\Commands会生成一个Test.php文件
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class test extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'test'; //命令名
/**
* The console command description.
*
* @var string
*/
protected $description = 'Command description';//描述
/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
//todo 你要实现的业务逻辑
}
}
这时候你就可以在控制面板里用php artisan test 查看你的业务逻辑功能
定义任务
你可以在 App\Console\Kernel 类的 schedule 方法中定义所有调度任务。
protected function schedule(Schedule $schedule)
{
$schedule->command('test')->everyMinute();
}
我这是每分钟执行一次,具体参数如下
->cron(’* * * * *’); 在自定义Cron调度上运行任务
->everyMinute(); 每分钟运行一次任务
->everyFiveMinutes(); 每五分钟运行一次任务
->everyTenMinutes(); 每十分钟运行一次任务
->everyFifteenMinutes(); 每十五分钟运行一次任务
->everyThirtyMinutes(); 每三十分钟运行一次任务
->hourly(); 每小时运行一次任务
->hourlyAt(17); 每小时第十七分钟运行一次任务
->daily(); 每天凌晨零点运行任务
->dailyAt(‘13:00’); 每天13:00运行任务
->twiceDaily(1, 13); 每天1:00 & 13:00运行任务
->weekly(); 每周运行一次任务
->monthly(); 每月运行一次任务
->monthlyOn(4, ‘15:00’); 每月4号15:00运行一次任务
->quarterly(); 每个季度运行一次
->yearly(); 每年运行一次
->timezone(‘America/New_York’); 设置时区
->weekdays(); 只在工作日运行任务
->sundays(); 每个星期天运行任务
->mondays(); 每个星期一运行任务
->tuesdays(); 每个星期二运行任务
->wednesdays(); 每个星期三运行任务
->thursdays(); 每个星期四运行任务
->fridays(); 每个星期五运行任务
->saturdays(); 每个星期六运行任务
->between($start, $end); 基于特定时间段运行任务
->when(Closure); 基于特定测试运行任务