下面由Laravel教學專欄帶大家介紹laravel怎麼用指令來執行腳本,希望對大家有幫助!
laravel 使用指令執行腳本
1.產生console檔
php artisan make:console TestConsole --command=laravel:test
2.handle方法編輯業務邏輯
<?php namespace 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怎麼用指令來執行腳本的詳細內容。更多資訊請關注PHP中文網其他相關文章!