laravel 使用命令执行脚本
1.生成console文件
PHP artisan make:console TestConsole --command=laravel:test
2.handle方法中编辑业务逻辑
<?PHPnamespace App\Console\Commands;use Illuminate\Console\Command;class HellolaravelAcademy extends Command{ /** * The name and signature of the console command. * * @var string */ protected $signature = 'laravel:test {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() { echo $this->argument("name").PHP_Eol; echo 123; }}
$signature为是否接收参数,?表示非必须。 arguement接收参数
执行
PHP artisan laravel:test PHP artisan laravel:test xiaoming
【相关推荐:最新的五个Laravel视频教程】 总结
以上是内存溢出为你收集整理的聊聊laravel怎么用命令来执行脚本全部内容,希望文章能够帮你解决聊聊laravel怎么用命令来执行脚本所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)