jesobreira/cmdline
Composer 安装命令:
composer require jesobreira/cmdline
包简介
PHP command line arguments parser
README 文档
README
Library for easy parsing of command line arguments.
Install by running:
composer require jesobreira/cmdline
It can get:
Simple key/value
Example. The following code:
use CmdLine\Parser as cmdline;
echo cmdline::get('color');
Will return "white" if you run the script in one of these ways (quotes are optional but mandatory if you're going to use spaces):
- php script.php -color "white"
- php script.php --color white
- php script.php /color white
Existence
Example. The following code:
if (cmdline::keyexists('givemecoffee')) {
echo "You want coffee.";
} else {
echo "You do not want coffee.";
}
Will return "You want coffee." if you run one of these:
- php script.php -givemecoffee
- php script.php --givemecoffee
- php script.php /givemecoffee
Flags
Example. This script:
echo "You want: ";
if (cmdline::flagenabled('C')) echo "coffee ";
if (cmdline::flagenabled('B')) echo "beer ";
echo " and you do not want: ";
if (cmdline::flagdisabled('V')) echo "vodka ";
if (cmdline::flagdisabled('W')) echo "wine ";
echo " but you did not tell me if you want: ";
if (!cmdline::flagexists('S')) echo "soda ";
if (!cmdline::flagexists('J')) echo "juice ";
Will return "Will return "You want: coffee beer and you do not want: vodka wine but you did not tell me if you want: soda juice" if you run:
- php script.php +CB -VW
Getting arguments by its index
You can also read the process.argv (0-based index) through this function. The advantage is that if the index does not exist (the user did not specify the argument), it won't throw an error. It will just return the value you specify in the second function parameter.
// 0 = php executable; 1 = php script; 2... = args
$first_argument = cmdline::getvalbyindex(2, false);
if (!$first_argument) {
echo "You did not specify any argument.";
} else {
echo "First argument is: " . $first_argument;
}
Just a note: The second value of getvalbyindex method can be an integer value, a string, a boolean value, an array or anything you want it to return if the index does not exist in process.argv object.
This parameter is also available in get method, also as a second function parameter. In this case, it will return this value if the key was not found. Example:
$user_wants = cmdline::get('iwant', 'nothing');
echo "You want" . $user_wants;
So, if you run:
- php script.php /iwant water
It will return "You want water". But if you run just:
- php script.php
It will return "You want nothing". Please note that, as these two are the only methods in this module meant to return strings, the second parameter is not available for the other functions. By default, if you do not specify any fallback value, it returns null if the wanted value could not be found.
Also, please note that this module can NOT parse arguments in the format key=value. Example:
- php script.php key=value IT WILL NOT WORK
Other Ports
This lib is a port from the AutoIt3 UDF, which is also available as a NodeJS module.
jesobreira/cmdline 适用场景与选型建议
jesobreira/cmdline 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 15 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 04 月 30 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「cli」 「terminal」 「argv」 「argc」 「dos」 「args」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 jesobreira/cmdline 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 jesobreira/cmdline 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 jesobreira/cmdline 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
The simple way to split your command line string into an array of command arguments in PHP.
A fork of runcmf/runtracy
Finally a sane way to register available commands and arguments and match your command line in PHP.
PHP Terminal emulator controller utilizing ANSI escape sequence coding.
Platine Console is a powerful library with support of custom style to build command line interface applications
Parse argv and get options and arguments
统计信息
- 总下载量: 15
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 9
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-04-30