调用 php artisan custom:command 并在末尾添加一个参数而不指定之前的参数

Call php artisan custom:command with an argument at the end without specifying the ones before

如果我有这样的命令,有什么办法吗:

protected $signature = 'custom:command {arg1} {arg2} {arg3?} {arg4?} {arg5?}';

要在不指定 arg4 而使用 arg5 的情况下调用它?类似于:

php artisan custom:command arg1_val arg2_val arg3_val arg5_val

当然,如果我像上面那样做,arg5_val 将被解释为 arg4_val 并且 arg5 将被忽略。

我希望我的问题很清楚,而且还没有人回答。甚至不知道如何搜索它:))

提前致谢!

您可以使用optional arguments

// Optional argument...
custom:command {arg5?}

..但他们需要在最后。否则该命令不知道是否遗漏了参数。

另一种方法是使用options。然后你可以用 option_name=option_value

指定这些