参数和选项之间有什么区别?
2022-08-30 17:50:30
我不太确定这个术语存在于什么水平上,但是在php框架Laravel中,有一个名为Artisan的命令行工具,用于创建cronjobs。(又名命令)创建命令时。您可以指定参数和选项,如下所示:
/**
* Get the console command arguments.
*
* @return array
*/
protected function getArguments()
{
return array(
array('example', InputArgument::REQUIRED, 'An example argument.'),
);
}
/**
* Get the console command options.
*
* @return array
*/
protected function getOptions()
{
return array(
array('example', null, InputOption::VALUE_OPTIONAL, 'An example option.', null),
);
}
两者之间有什么区别?