Fully Qualified Name: | Laminas\Console\Prompt\Char |
Extends: | AbstractPrompt |
Name | Description | Defined By |
---|---|---|
__construct() | Ask the user for a single key stroke | Char |
getAllowEmpty() | Char | |
getAllowedChars() | Char | |
getConsole() | Return console adapter to use when showing prompt. | AbstractPrompt |
getEcho() | Char | |
getIgnoreCase() | Char | |
getLastResponse() | Return last answer to this prompt. | AbstractPrompt |
getPromptText() | Char | |
prompt() | Create an instance of this prompt, show it and return response. | AbstractPrompt |
setAllowEmpty() | Char | |
setAllowedChars() | Char | |
setConsole() | Set console adapter to use when showing prompt. | AbstractPrompt |
setEcho() | Char | |
setIgnoreCase() | Char | |
setPromptText() | Char | |
show() | Show the prompt to user and return a single char. | Char |
Ask the user for a single key stroke
Parameter Name | Type | Description |
---|---|---|
$promptText | string | The |
$allowedChars | string | A |
$ignoreCase | bool | If |
$allowEmpty | bool | Is |
$echo | bool | Display |
Returns:
Returns: bool
Returns: string
Return console adapter to use when showing prompt.
Returns: \ConsoleAdapter
Returns: bool
Returns: bool
Return last answer to this prompt.
Returns: mixed
Returns: string
Create an instance of this prompt, show it and return response.
This is a convenience method for creating statically creating prompts, i.e.:
$name = Laminas\Console\Prompt\Line::prompt("Enter your name: ");
Returns: mixed
Parameter Name | Type | Description |
---|---|---|
$allowEmpty | bool |
Returns:
Parameter Name | Type | Description |
---|---|---|
$allowedChars | string |
Returns:
Set console adapter to use when showing prompt.
Parameter Name | Type | Description |
---|---|---|
$adapter | \ConsoleAdapter |
Returns:
Parameter Name | Type | Description |
---|---|---|
$echo | bool |
Returns:
Parameter Name | Type | Description |
---|---|---|
$ignoreCase | bool |
Returns:
Parameter Name | Type | Description |
---|---|---|
$promptText | string |
Returns:
Show the prompt to user and return a single char.
Returns: string