美文网首页
laravel中php artisan命令创建命令

laravel中php artisan命令创建命令

作者: 胜猿 | 来源:发表于2020-12-17 20:38 被阅读0次

    1.在laravel中,用php artisan make:console 类名,创建一个php命令文件,位于app/console/commands/

    2.在目标位置添加注册:

    3.在新创建的文件中,protected $singnature =后面加入想输入的命令。

    在其下面protected $description = '  ' 写上你的命令描述。

    4、在最下面的方法中,也就如下中。写入你想做的事情就好了。

    public function handle()

    {

    $this->info($this->description);

    }

    相关文章

      网友评论

          本文标题:laravel中php artisan命令创建命令

          本文链接:https://www.haomeiwen.com/subject/vtcwuctx.html