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
nullintForeground color
nullintBackground color
stringgetCharset() : \Zend\Console\Charset\CharsetInterface
getDefaultCharset() : \Zend\Console\Charset\CharsetInterface
getHeight() : int
intgetSize() : array
arrayarray($width, $height)getTitle() : string
stringgetWidth() : int
intisUtf8() : bool
boolreadChar(string | null $mask) : string
stringnullA list of allowed chars
stringreadLine(int $maxLength) : string
intMaximum response length
stringresetColor() : 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
stringText to write
intConsole X coordinate (column)
intConsole 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).
intTop-left corner X coordinate (column)
intTop-left corner Y coordinate (row)
intBottom-right corner X coordinate (column)
intBottom-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.
stringText to write
intMaximum block width. Negative value means distance from right edge.
intnullMaximum block height. Negative value means distance from bottom edge.
intBlock X coordinate (column)
intBlock 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