Laravel 8 定义调度
你可以在 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();