laravel写crontab

简要描述:

  • laravel写crontab

artisan命令:

  • php artisan make:command DealTheme

app/Console/Commands下就会看到DealTheme.php:

    /**
     * The name and signature of the console command.
     *
     * @var string
     */
    protected $signature = 'command:deal_theme';

    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = 'DealTheme';
  • 需要执行的方法写在handle中:
    /**
     * Execute the console command.
     *
     * @return mixed
     */
    public function handle()
    {
       
    }

在app/Console/Kernel中注册路由:

<?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\DealTheme::class
    ];

    /**
     * Define the application's command schedule.
     *
     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
     * @return void
     */
    protected function schedule(Schedule $schedule)
    {
          //  设置每秒执行一次
         $schedule->command('command:deal_theme')->everyMinute();
    }

    /**
     * Register the Closure based commands for the application.
     *
     * @return void
     */
    protected function commands()
    {
        require base_path('routes/console.php');
    }
}

在linux的crontab -e中插入:

* * * * * /usr/lnmp/php/bin/php /www/artisan schedule:run >> /dev/null 2>&1

注意:

  • laravel的command需要关闭proc_open、proc_get_status函数禁用。
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容