我创建了一个Task类,其方法需要多个参数:
class Sample_Task
{
public function create($arg1, $arg2) {
// something here
}
}
但似乎工匠只得到第一个论点:
php artisan sample:create arg1 arg2
错误讯息:
Warning: Missing argument 2 for Sample_Task::create()
如何在此方法中传递多个参数?
答案 0 :(得分:6)
class Sample_Task
{
public function create($args) {
$arg1 = $args[0];
$arg2 = $args[1];
// something here
}
}
答案 1 :(得分:4)
Laravel 5.2
您需要做的是将$signature
属性中的参数(或选项,例如--option)指定为数组。 Laravel用星号表示这一点。
<强>参数强>
e.g。假设你有一个Artisan命令来“处理”图像:
protected $signature = 'image:process {id*}';
如果你这样做:
php artisan help image:process
...... Laravel将负责添加正确的Unix风格语法:
Usage:
image:process <id> (<id>)...
要访问列表,请在handle()
方法中使用:
$arguments = $this->argument('id');
foreach($arguments as $arg) {
...
}
选项强>
我说它也适用于选项,你在{--id=*}
使用$signature
代替。
帮助文本将显示:
Usage:
image:process [options]
Options:
--id[=ID] (multiple values allowed)
-h, --help Display this help message
...
因此用户可以输入:
php artisan image:process --id=1 --id=2 --id=3
要访问handle()
中的数据,您可以使用:
$ids = $this->option('id');
如果你省略'id',你将获得所有选项,包括'quiet','verbose'等的布尔值。
$options = $this->option();
您可以访问$options['id']
Laravel Artisan guide中的更多信息。