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

2022-08-30 17:50:30

我不太确定这个术语存在于什么水平上,但是在php框架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),
        );
    }

两者之间有什么区别?


答案 1

看看帮助: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.

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

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


答案 2

推荐