PHP Class think\console\Input

Afficher le fichier Open project: top-think/framework Class Usage Examples

Protected Properties

Свойство Type Description
$arguments think\console\input\Argument[]
$definition think\console\input\Definition
$interactive
$options think\console\input\Option[]

Méthodes publiques

Méthode Description
__construct ( $argv = null )
__toString ( ) : string 返回传递给命令的参数的字符串
bind ( Definition $definition ) 绑定实例
escapeToken ( string $token ) : string 转义指令
getArgument ( string $name ) : mixed 根据名称获取参数
getArguments ( ) : Argument[] 获取所有的参数
getFirstArgument ( ) : string | null 获取第一个参数
getOption ( string $name ) : mixed 获取选项值
getOptions ( ) : Option[] 获取所有的选项
getParameterOption ( string | array $values, mixed $default = false ) : mixed 获取原始选项的值
hasArgument ( string | integer $name ) : boolean 检查是否存在某个参数
hasOption ( string $name ) : boolean 是否有某个选项
hasParameterOption ( string | array $values ) : boolean 检查原始参数是否包含某个值
isInteractive ( ) : boolean 检查输入是否是交互的
setArgument ( string $name, string $value ) 设置参数的值
setInteractive ( $interactive ) 设置输入的交互
setOption ( string $name, string | boolean $value ) 设置选项值
validate ( ) 验证输入

Méthodes protégées

Méthode Description
parse ( ) 解析参数
setTokens ( array $tokens )

Private Methods

Méthode Description
addLongOption ( string $name, mixed $value ) 添加一个完整选项的值
addShortOption ( string $shortcut, mixed $value ) 添加一个短选项的值
parseArgument ( string $token ) 解析参数
parseLongOption ( string $token ) 解析完整选项
parseShortOption ( string $token ) 解析短选项
parseShortOptionSet ( string $name ) 解析短选项

Method Details

__construct() public méthode

public __construct ( $argv = null )

__toString() public méthode

返回传递给命令的参数的字符串
public __toString ( ) : string
Résultat string

bind() public méthode

绑定实例
public bind ( Definition $definition )
$definition think\console\input\Definition A InputDefinition instance

escapeToken() public méthode

转义指令
public escapeToken ( string $token ) : string
$token string
Résultat string

getArgument() public méthode

根据名称获取参数
public getArgument ( string $name ) : mixed
$name string 参数名
Résultat mixed

getArguments() public méthode

获取所有的参数
public getArguments ( ) : Argument[]
Résultat think\console\input\Argument[]

getFirstArgument() public méthode

获取第一个参数
public getFirstArgument ( ) : string | null
Résultat string | null

getOption() public méthode

获取选项值
public getOption ( string $name ) : mixed
$name string 选项名称
Résultat mixed

getOptions() public méthode

获取所有的选项
public getOptions ( ) : Option[]
Résultat think\console\input\Option[]

getParameterOption() public méthode

获取原始选项的值
public getParameterOption ( string | array $values, mixed $default = false ) : mixed
$values string | array 需要检查的值
$default mixed 默认值
Résultat mixed The option value

hasArgument() public méthode

检查是否存在某个参数
public hasArgument ( string | integer $name ) : boolean
$name string | integer 参数名或位置
Résultat boolean

hasOption() public méthode

是否有某个选项
public hasOption ( string $name ) : boolean
$name string 选项名
Résultat boolean

hasParameterOption() public méthode

检查原始参数是否包含某个值
public hasParameterOption ( string | array $values ) : boolean
$values string | array 需要检查的值
Résultat boolean

isInteractive() public méthode

检查输入是否是交互的
public isInteractive ( ) : boolean
Résultat boolean

parse() protected méthode

解析参数
protected parse ( )

setArgument() public méthode

设置参数的值
public setArgument ( string $name, string $value )
$name string 参数名
$value string

setInteractive() public méthode

设置输入的交互
public setInteractive ( $interactive )

setOption() public méthode

设置选项值
public setOption ( string $name, string | boolean $value )
$name string 选项名
$value string | boolean

setTokens() protected méthode

protected setTokens ( array $tokens )
$tokens array

validate() public méthode

验证输入
public validate ( )

Property Details

$arguments protected_oe property

protected Argument[],think\console\input $arguments
Résultat think\console\input\Argument[]

$definition protected_oe property

protected Definition,think\console\input $definition
Résultat think\console\input\Definition

$interactive protected_oe property

protected $interactive

$options protected_oe property

protected Option[],think\console\input $options
Résultat think\console\input\Option[]