在 Laravel 7.0 使用 Artisan 指令列

新增指令

以建立一個檔案為例,新增一條 MakeFile 指令。

1
php artisan make:command MakeFile

修改 app/Console/Commands/MakeFile.php 檔:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
namespace App\Console\Commands;

use Illuminate\Console\Command;

class MakeFile extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'make:file {name} {--text=}';

/**
* The console command description.
*
* @var string
*/
protected $description = 'Make a file';

/**
* Create a new command instance.
*
* @return void
*/
public function __construct()
{
parent::__construct();
}

/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
$name = $this->argument('name');
$text = $this->option('text');

file_put_contents(storage_path($name), $text);
}
}

參數

設定一個必填的參數:

1
make:file {name}

設定一個選填的參數:

1
make:file {name?}

設定一個選填帶有預設值的參數:

1
make:file {name=example}

取得參數:

1
$name = $this->argument('name');

取得所有的參數:

1
$arguments = $this->arguments();

選項

設定一個布林的選項:

1
--text

設定一個選填的選項:

1
--text=

設定一個選填帶有預設值的選項:

1
--text=example

取得選項:

1
$text = $this->option('text');

取得所有的選項:

1
$options = $this->options();

使用

1
php artisan make:file test.txt --text=example