🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
在laravel5.3中增加了console.php这个路由文件 ~~~ Artisan::command('inspire', function () { $this->comment(Inspiring::quote()); })->describe('Display an inspiring quote'); ~~~ 在command中打php artisan inspire会输出名言警句 就是我们一些命令不用生成artisan命令了 **自定义命令** ~~~ Artisan::command('hello {name}', function () { $this->comment('Hey!' . $this->argument('name')); })->describe('say hello'); ~~~ 上面我们定义了一个参数name,如果参数name要增加注释的话可以 ~~~ Artisan::command('hello {name : 一个人的名字}', function () { $this->comment('Hey!' . $this->argument('name')); })->describe('say hello'); ~~~ 这样就可以用php artisan help hello看到了