Laravel中任务调度console使用方法小结

适用场景:分析数据(日志)

示例:

在\app\Console\Commands目录下已生成一个Check.php文件

namespace App\Console\Commands;

use Illuminate\Console\Command;

class Check extends Command
{
/**

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

/**

  • 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()
    {
    //
    }
    }

    你可以把$signature改为你要的命令名称

    此时还不能在控制台中调用,需要在Kernel.php中注册。

    你已经可以在控制台中使用这个命令了

    点评:似乎也没啥用,因为php本身也可以不用Laravel框架来使用CLI命令行。

dawei

【声明】:淮南站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。