다음 튜토리얼 칼럼인 Laravel에서는 laravel에서 명령어를 사용하여 스크립트를 실행하는 방법을 소개하겠습니다. 모든 분들께 도움이 되길 바랍니다!
laravel은 명령을 사용하여 스크립트를 실행합니다
1. 콘솔 파일을 생성합니다
php artisan make:console TestConsole --command=laravel:test
2. 핸들 메소드에서 비즈니스 로직을 편집합니다.
<?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는 매개변수 수신 여부를 의미합니다. . 인수는 매개변수를 받습니다
execute
php artisan laravel:test php artisan laravel:test xiaoming
위 내용은 laravel이 명령을 사용하여 스크립트를 실행하는 방법에 대해 이야기해 보겠습니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!