Laravel框架实现定时任务

  1. 创建定时任务文件
php artisan make:command OrderCancel  // 例如新建一个定时取消订单的任务

在app/Console/Commands/目录下会生成OrderCancel.php文件

  1. 编写定时任务逻辑
<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;

class OrderCancel extends Command
{
    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'orderCancel';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'Command description';

    /**
     * Create a new command instance.
     *
     * @return void
     */
    public function __construct()
    {
        parent::__construct();
    }

    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
        // 此处填写任务逻辑
    }
}

  1. 在app/Console/Kernel.php文件中注册新增的定时任务类,并调用定时任务
<?php

namespace App\Console;

use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;

class Kernel extends ConsoleKernel
{
    /**
     * The Artisan commands provided by your application.
     *
     * @var array
     */
    protected $commands = [
        \App\Console\Commands\OrderCancel::class, // 注册
    ];

    /**
     * Define the application's command schedule.
     *
     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
        $schedule->command('orderCancel')
            ->everyFiveMinutes(); // 每5分钟执行一次
    }

    /**
     * Register the commands for the application.
     *
     * @return void
     */
    protected function commands()
    {
        $this->load(__DIR__.'/Commands');

        require base_path('routes/console.php');
    }
}

  1. 启动定时任务
// Linux服务器:
crontab -e // 编辑任务
* * * * * root /usr/bin/php /laravelProject/artisan schedule:run >> /dev/null 2>&1
// whereis php 查看PHP安装位置

// 本地测试环境
php artisan schedule:run
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容