- 配置console的Kernel
protected $commands = [
Commands\DoSomething::class,
];
protected function schedule(Schedule $schedule)
{
$schedule->command('aaa:bbbbb')-> everyMinute(); //每分鐘執(zhí)行一次
}
- 新建command腳本
新建目錄App\Console\Commands
在Commands目錄下新建DoSomething類
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
/**
* 處理JIRA的project數(shù)據(jù)
*/
class DoSomething extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'aaa:bbbbb'; //執(zhí)行腳本的命令別名
/**
* The console command description.
*
* @var string
*/
protected $description = 'test schedule';
function __construct()
{
parent::__construct();
}
public function handle()
{
// 腳本的業(yè)務(wù)邏輯在這里寫即可
}
}
3. 執(zhí)行命令
a. 在命令行執(zhí)行php artisan schedule:run 將在1分鐘后執(zhí)行腳本
b. 在命令行執(zhí)行php artisan aaa:bbbbb將立刻執(zhí)行腳本
3. 在crontab里添加定時(shí)任務(wù)執(zhí)行php artisan schedule:run 即可定時(shí)執(zhí)行腳本