本文實例講述了Laravel框架定時任務2種實現方式。分享給你們供你們參考,具體以下:php
第一種html
一、生成一個commands文件laravel
> php artisan make:command test
二、打開文件進行修改shell
laravel\App\Console\Commands\test.php數據庫
<?php namespace App\Console\Commands; use Illuminate\Console\Command; use Illuminate\Support\Facades\Log; class test extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'test:insert'; // php artisan list 中將會生成 "php artisan test:insert " 指令 /** * The console command description. * * @var string */ protected $description = 'insert Test table some test data'; // 對上面指令的描述 /** * Create a new command instance. * * @return void */ public function __construct() { parent::__construct(); } /** * Execute the console command. * * @return mixed */ public function handle() { // 編寫你要的定時任務執行的代碼! # eg Log::info('test'); } }
> php artisan list
查看服務器
三、而後修改: laravel\app\Console\Kernel.php 文件app
<?php namespace App\Console; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; class Kernel extends ConsoleKernel { protected $commands = [ // 參考手冊 新加 \App\Console\Commands\test::class, ]; // 定義應用的命令調度 protected function schedule(Schedule $schedule) { // 新加 每分鐘執行一次 $schedule->command('test:insert')->everyMinute(); } protected function commands() { $this->load(__DIR__.'/Commands'); require base_path('routes/console.php'); } }
四、啓用計劃任務:在服務器中加入到計劃任務 crontab -e
框架
注意這裏的 path 是你的laravel項目根目錄的 絕對路徑!, 而後加上後面的 artisan 到結尾的字符串函數
* * * * * php /path/artisan schedule:run >> /dev/null 2>&1
* * * * * php /code/src/laravel/artisan schedule:run >> /dev/null 2>&1源碼分析
五、打開日誌文件查看
laravel\storage\logs\laravel.log
第二種
使用 shell腳本執行
由於 php artisan list
能夠查看到 執行指令 test:insert
因此能夠考慮用 .sh 腳本執行,仍是相似上面 crontab -e
編寫
一、先編寫 .sh 腳本 laravel/test.sh 放在項目某個位置,文件內寫入
php artisan test:insert
上面指令在命令行手動每執行一次就能夠觸發一次編寫的程序,至關於給 laravel.log 寫入一次 test
二、使用 crontab -e
編寫 執行 第一步寫的 test.sh 腳本
* * * * * laravel/test.sh
以上兩種都可看到 laravel.log 日誌