VALUE_NONE
VALUE_NONE = 1
命令行选项
$name : string
选项名
$shortcut : string
选项短名称
$mode : int
选项类型
$default : mixed
选项默认值
$description : string
选项描述
__construct(string $name, string|array $shortcut = null, int $mode = null, string $description = '', mixed $default = null) : mixed
构造方法
string | $name | 选项名 |
string|array | $shortcut | 短名称,多个用|隔开或者使用数组 |
int | $mode | 选项类型(可选类型为 self::VALUE_*) |
string | $description | 描述 |
mixed | $default | 默认值 (类型为 self::VALUE_REQUIRED 或者 self::VALUE_NONE 的时候必须为null) |