【发布时间】:2013-07-24 03:03:05
【问题描述】:
我不确定这个术语存在于哪个级别,但在 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),
);
}
两者有什么区别?
【问题讨论】:
-
大声笑我刚刚读了我自己的老问题,例如“论点和意见之间有什么区别”。确实很哲学。
标签: php shell command-line command laravel