1.在laravel中,用php artisan make:console 类名,创建一个php命令文件,位于app/console/commands/
2.在目标位置添加注册:
3.在新创建的文件中,protected $singnature =后面加入想输入的命令。
在其下面protected $description = ' ' 写上你的命令描述。
4、在最下面的方法中,也就如下中。写入你想做的事情就好了。
public function handle()
{
$this->info($this->description);
}