clear()
clearLine()
clearScreen()
colorize()
getCharset()
getDefaultCharset()
getHeight()
getSize()
getTitle()
getWidth()
hideCursor()
isUtf8()
readChar()
readLine()
resetColor()
setBgColor()
setCharset()
setColor()
setPos()
showCursor()
write()
writeAt()
writeBox()
writeLine()
writeText()
writeTextBlock()
FILL_BLOCK
FILL_NONE
FILL_SHADE_DARK
FILL_SHADE_LIGHT
FILL_SHADE_MEDIUM
LINE_BLOCK
LINE_DOUBLE
LINE_NONE
LINE_SINGLE
clear() : void
clearLine() : void
clearScreen() : void
colorize(string $string, null | int $color, null | int $bgColor) : string
string
nullint
Foreground color
nullint
Background color
string
getCharset() : \Zend\Console\Charset\CharsetInterface
getDefaultCharset() : \Zend\Console\Charset\CharsetInterface
getHeight() : int
int
getSize() : array
array
array($width, $height)getTitle() : string
string
getWidth() : int
int
isUtf8() : bool
bool
readChar(string | null $mask) : string
stringnull
A list of allowed chars
string
readLine(int $maxLength) : string
int
Maximum response length
string
resetColor() : void
setBgColor(int $color) : void
int
setCharset(\Zend\Console\Charset\CharsetInterface $charset) : void
setColor(int $color) : void
int
setPos(int $x, int $y) : void
int
int
showCursor() : void
write(string $text, null | int $color, null | int $bgColor) : void
string
nullint
nullint
writeAt(string $text, int $x, int $y, null | int $color, null | int $bgColor) : void
string
Text to write
int
Console X coordinate (column)
int
Console Y coordinate (row)
nullint
nullint
writeBox(int $x1, int $y1, int $x2, int $y2, int $lineStyle, int $fillStyle, int $color, int $bgColor, null | int $fillColor, null | int $fillBgColor) : void
If X or Y coordinate value is negative, it will be calculated as the distance from far right or bottom edge of the console (respectively).
int
Top-left corner X coordinate (column)
int
Top-left corner Y coordinate (row)
int
Bottom-right corner X coordinate (column)
int
Bottom-right corner Y coordinate (row)
int
(optional) Box border style.
int
(optional) Box fill style or a single character to fill it with.
int
(optional) Foreground color
int
(optional) Background color
nullint
(optional) Foreground color of box fill
nullint
(optional) Background color of box fill
writeLine(string $text, null | int $color, null | int $bgColor) : void
If the text is longer than console width it will be truncated.
string
nullint
nullint
writeText(string $text, null | int $color, null | int $bgColor) : void
string
nullint
nullint
writeTextBlock(string $text, int $width, int | null $height, int $x, int $y, null | int $color, null | int $bgColor) : void
In case a line of text does not fit desired width, it will be wrapped to the next line. In case the whole text does not fit in desired height, it will be truncated.
string
Text to write
int
Maximum block width. Negative value means distance from right edge.
intnull
Maximum block height. Negative value means distance from bottom edge.
int
Block X coordinate (column)
int
Block Y coordinate (row)
nullint
(optional) Text color
nullint
(optional) Text background color
FILL_BLOCK
FILL_NONE
FILL_SHADE_DARK
FILL_SHADE_LIGHT
FILL_SHADE_MEDIUM
LINE_BLOCK
LINE_DOUBLE
LINE_NONE
LINE_SINGLE