この用語がどのレベルに存在するのかはよくわかりませんが、php フレームワークの Laravel には、cronjobs の作成に使用される Artisan というコマンドライン ツールがあります。(別名コマンド) コマンドを作成するとき。次のように引数とオプションを指定できます。
/**
* 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),
);
}
2つの違いは何ですか?