phalcon / cli-options-parser
命令行参数/选项解析器。
v2.0.0
2023-11-24 16:04 UTC
Requires
- php: >=8.0
Requires (Dev)
- pds/skeleton: ^1.0
- phpstan/phpstan: ^1.10
- phpunit/phpunit: ^9.6
- squizlabs/php_codesniffer: ^3.7
README
命令行参数/选项解析器。
要求
- PHP >= 8.0
通过 Composer 安装
在公共位置或您的项目中安装 composer
composer require phalcon/cli-options-parser
使用方法
use Phalcon\Cop\Parser; $parser = new Parser(); // Parse params from the $argv $params = $parser->parse($argv); // Parse params from the $_SERVER['argv'] $params = $parser->parse(); // After parsing input, Parser provides a way to gets booleans: $parser->getBoolean('foo'); // Get param `foo` or return TRUE as a default value $parser->getBoolean('foo', true);
示例
php test.php -az value1 -abc value2
[
'a' => 'value2',
'z' => 'value1',
'b' => 'value2',
'c' => 'value2',
]
php test.php -a value1 -abc value2
[
'a' => 'value2',
'b' => 'value2',
'c' => 'value2',
]
php test.php --az value1 --abc value2
[
'az' => 'value1',
'abc' => 'value2',
]
php test.php --foo --bar=baz --spam eggs
[
'foo' => true,
'bar' => 'baz',
'spam' => 'eggs',
]
php test.php -abc foo
[
'a' => 'foo',
'b' => 'foo',
'c' => 'foo',
]
php test.php arg1 arg2 arg3
[
0 => 'arg1',
1 => 'arg2',
2 => 'arg3',
]
php test.php \
plain-arg \
--foo \
--bar=baz \
--funny="spam=eggs" \
--also-funny=spam=eggs \
'plain arg 2'
-abc \
-k=value \
"plain arg 3" \
--s="original" \
--s='overwrite' \
--s
[
0 => 'plain-arg',
'foo' => true,
'bar' => 'baz',
'funny' => 'spam=eggs',
'also-funny' => 'spam=eggs',
1 => 'plain arg 2',
'a' => true,
'b' => true,
'c' => true,
'k' => 'value',
2 => 'plain arg 3',
's' => 'overwrite',
]
许可证
该 Cop 是开源软件,根据 MIT 许可证 发布。
© Phalcon 团队