このページの翻訳:
- 日本語 (ja)
- English (en)
最近の更新
Tag Cloud
このページへのアクセス
今日: 3 / 昨日: 0
総計: 211
- Dokuwiki.fl8.jp(1955)
- 13 CentOS6メール設定(48)
- FreeBSD カーネル再構築(46)
- 75 Proftpd(46)
- 01 Galera構築(41)
最近の更新
このページへのアクセス
今日: 3 / 昨日: 0
総計: 211
Laravelコマンドから引数が違う時などにヘルプを表示させたい。
下記のようにしておくと、指定の引数以外の時に対象コマンドのヘルプが表示されます。
$this→call('help',['command_name'⇒'コマンド名'])
protected $signature = 'command:TestCommand {arg : check 実行確認 | run 実行 }';
public function handle()
{
$arg = $this->argument("arg");
switch($arg){
case 'check': $this->test = 1; break;
case 'run' : $this->test = 0; break;
default:
$this->call('help',['command_name'=>'command:TestCommand']);
exit;
}
}