我不太确定这个术语存在于哪个级别,但在 php-framework 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),
);
}
两者有什么区别?