>PHP 프레임워크 >Laravel >laravel이 명령을 사용하여 스크립트를 실행하는 방법에 대해 이야기해 보겠습니다.

laravel이 명령을 사용하여 스크립트를 실행하는 방법에 대해 이야기해 보겠습니다.

藏色散人
藏色散人앞으로
2021-11-23 15:43:442771검색

다음 튜토리얼 칼럼인 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 = &#39;laravel:test {name?}&#39;;
    /**
     * The console command description.
     *
     * @var string
     */
    protected $description = &#39;Command description&#39;;
    /**
     * 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 juejin.im에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제