Laravel 8 定义调度

2021-07-19 11:06 更新

你可以在 App\Console\Kernel 类的 schedule 方法中定义所有的调度任务。 在开始之前,让我们来看一个例子。在此例中,我们计划每天午夜执行一个 闭包。在 闭包 中,我们会执行一个数据库查询来清空一张表:

<?php

namespace App\Console;

use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
use Illuminate\Support\Facades\DB;

class Kernel extends ConsoleKernel
{
    /**
     * 应用中自定义的 Artisan 命令
     *
     * @var array
     */
    protected $commands = [
        //
    ];

    /**
     * 定义应用中的命令调度
     *
     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
        $schedule->call(function () {
            DB::table('recent_users')->delete();
        })->daily();
    }
} 

除了使用闭包来定义任务调度外,你也可以使用 可调用对象。可调用对象是简单的 PHP 类,包含一个 __invoke 方法:

$schedule->call(new DeleteRecentUsers)->daily(); 


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号