laravel定時任務

道亦呀發表於2020-12-03

建立一個Test.php測試任務

php artisan make:command Test

建立完成後會在app/Console/Commands/目錄下Test.php

開啟Test.php

<?php

namespace app\Console\Commands;


use app\common\facades\Setting;

use app\Jobs\DispatchesJobs;
use app\Jobs\MessageNoticeJob;
use Illuminate\Console\Command;


class Test extends Command
{

    protected $signature = 'test';//命令名稱,待會呼叫php artisan test就會執行

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = '測試';//命令描述,沒什麼用

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();//自構函式,也用不到
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
       //主要業務邏輯在這些
       Log::info('測試任務');

       // Setting::$uniqueAccountId = \YunShop::app()->uniacid = 9;
       // $job = new MessageNoticeJob(1, [], '', '');
       // DispatchesJobs::dispatch($job,DispatchesJobs::LOW);
    }

}

註冊這個任務。
在Kernel.php中完成註冊。

app\console\Kernel.php
protected $commands = [
        'app\console\Commands\UpdateVersion',
        'app\console\Commands\RepairWithdraw',
        'app\console\Commands\Test',
        'app\console\Commands\WechatOpen',
        'app\console\Commands\RebuildDb',
        'app\console\Commands\MigrateHFLevelExcelData',
        'app\console\Commands\MigrateMemberDistributor',
        'app\console\Commands\UpdateInviteCode',
        WriteFrame::class,
    ];

呼叫任務

php artisan test

可以在日誌檔案中看到
說明我們已經成功呼叫了這個測試任務。

定時任務的排程
在kernel.php中還有一個schedule函式,這個就是用來做定時排程的。

 protected function schedule(Schedule $schedule)
    {
         $schedule->command('inspire')
                  ->hourly();
    }

點選連結加入群聊:企鵝群

相關文章