19
我不太確定這個術語在什麼層次上存在,但是在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),
);
}
兩者之間的區別是什麼?
哈哈我剛剛讀了我自己的舊問題,比如「論據和觀點之間有什麼區別」。確實是哲學。 – Himmators