PHP artisan command 和 console 差别
运行 php artisan 有两个选项
make:command Create a new command class
make:console Create a new Artisan command
会分别产生檔案在 app/Console/Commands 和 app/Console 这两个资料夹底下
不太了解这两个产生出檔案的差别
关于 LearnKu
command,console都是继承command的,功能都一样,command类似于控制台命令类,console用于控制台运行或者任务调度