参数和选项之间有什么区别?

时间:2013-07-24 14:44:20

标签: php shell command-line command laravel

我不确定这个术语存在的级别,但在php-framework Laravel中有一个名为Artisan的命令行工具,用于创建cronjobs。 (aka命令)创建命令时。您可以像这样指定参数和选项:

/**
 * 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),
        );
    }

两者之间有什么区别?

1 个答案:

答案 0 :(得分:25)

查看artisan migrate:make帮助:

Usage:
 migrate:make [--bench[="..."]] [--create] [--package[="..."]] [--path[="..."]] [--table[="..."]] name

Arguments:
 name                  The name of the migration

Options:
 --bench               The workbench the migration belongs to.
 --create              The table needs to be created.
 --package             The package the migration belongs to.
 --path                Where to store the migration.
 --table               The table to migrate.
 --help (-h)           Display this help message.
 --quiet (-q)          Do not output any message.
 --verbose (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
 --version (-V)        Display this application version.
 --ansi                Force ANSI output.
 --no-ansi             Disable ANSI output.
 --no-interaction (-n) Do not ask any interactive question.
 --env                 The environment the command should run under.

参数通常需要提供至少一个,在这种情况下,您需要提供迁移名称,否则命令将引发错误。

显然,选项是可选的,可用于修改命令行为。