在symfony/console中是否可以允许所有选项或参数,即使它没有在config中设置?
您可以从以下示例中看到。它有->addArgument()
和->addOption()
,它分别设置name
和yell
参数和选项。
http://symfony.com/doc/current/components/console/introduction.html
class GreetCommand extends Command
{
protected function configure()
{
$this
->setName('demo:greet')
->setDescription('Greet someone')
->addArgument(
'name',
InputArgument::OPTIONAL,
'Who do you want to greet?'
)
->addOption(
'yell',
null,
InputOption::VALUE_NONE,
'If set, the task will yell in uppercase letters'
)
;
}
protected function execute(InputInterface $input, OutputInterface $output)
{
$name = $input->getArgument('name');
if ($name) {
$text = 'Hello '.$name;
} else {
$text = 'Hello';
}
if ($input->getOption('yell')) {
$text = strtoupper($text);
}
$output->writeln($text);
}
}
是否可以在不设置参数和选项的情况下运行以下命令?
$ php application.php demo:greet Fabien John Doe --yell --greet --poke
好吧,如果没有重构基本Command
类,你就不能,而且有充分的理由-所有选项都应该由系统验证并接受。例如,对于远程CRON任务。
然而,你可以这样做:
->addOption(
'parameters',
InputOption::IS_ARRAY,
'Enter parameters'
);
通过这种方式,您可以将单个参数视为一个数组,并通过访问它自行承担验证责任:
if ($names = $input->getOption('parameters')) {
$text .= ' '.implode(', ', $parameters);
}
点击此处了解更多信息。
干杯!