PHP Interface Phalcon\Cli\Environment\EnvironmentInterface

Afficher le fichier Open project: phalcon/incubator

Méthodes publiques

Méthode Description
getNumberOfColumns ( ) : integer Gets the number of columns of the terminal.
getNumberOfRows ( ) : integer Gets the number of rows of the terminal.
hasColorSupport ( ) : boolean Checks the supports of colorization.
isConsole ( ) : boolean Checks if running in a console environment (CLI).
isInteractive ( integer | resource $fd = self::STDOUT ) : boolean Checks if the file descriptor is an interactive terminal.
isWindows ( ) : boolean Checks if currently running under MS Windows.

Method Details

getNumberOfColumns() public méthode

Gets the number of columns of the terminal.
public getNumberOfColumns ( ) : integer
Résultat integer

getNumberOfRows() public méthode

Gets the number of rows of the terminal.
public getNumberOfRows ( ) : integer
Résultat integer

hasColorSupport() public méthode

Checks the supports of colorization.
public hasColorSupport ( ) : boolean
Résultat boolean

isConsole() public méthode

Checks if running in a console environment (CLI).
public isConsole ( ) : boolean
Résultat boolean

isInteractive() public méthode

Checks if the file descriptor is an interactive terminal.
public isInteractive ( integer | resource $fd = self::STDOUT ) : boolean
$fd integer | resource File descriptor, must be either a file resource or an integer [Optional]
Résultat boolean

isWindows() public méthode

Checks if currently running under MS Windows.
public isWindows ( ) : boolean
Résultat boolean