symfony/console 中是否有可能允许所有选项或参数,即使它没有在配置上设置?
你看,基于下面的例子。它有->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