clear()
clearLine()
clearScreen()
colorize()
encodeText()
getCharset()
getDefaultCharset()
getHeight()
getSize()
getTitle()
getWidth()
hideCursor()
isUtf8()
readChar()
readLine()
resetColor()
setBgColor()
setCharset()
setColor()
setPos()
showCursor()
write()
writeAt()
writeBox()
writeLine()
writeText()
writeTextBlock()
$charset
$hasMBString
$posX
$posY
FILL_BLOCK
FILL_NONE
FILL_SHADE_DARK
FILL_SHADE_LIGHT
FILL_SHADE_MEDIUM
LINE_BLOCK
LINE_DOUBLE
LINE_NONE
LINE_SINGLE
Common console adapter codebase
clear() : void
clearLine() : void
clearScreen() : void
colorize(string $string, int $color, null | int $bgColor) : string
string
int
nullint
string
encodeText(string $text) : string
string
string
the encoding textgetCharset() : \Zend\Console\Charset\CharsetInterface
getHeight() : int
int
getSize() : int[]
int[]
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
\Zend\Console\Exception\BadMethodCallException |
if coordinates are invalid |
---|
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
\Zend\Console\Exception\InvalidArgumentException |
---|
$hasMBString : null | bool
$posX : int
$posY : int
FILL_BLOCK
inherited_from | \Zend\Console\Adapter\AdapterInterface::FILL_BLOCK |
---|
FILL_NONE
inherited_from | \Zend\Console\Adapter\AdapterInterface::FILL_NONE |
---|
FILL_SHADE_DARK
inherited_from | \Zend\Console\Adapter\AdapterInterface::FILL_SHADE_DARK |
---|
FILL_SHADE_LIGHT
inherited_from | \Zend\Console\Adapter\AdapterInterface::FILL_SHADE_LIGHT |
---|
FILL_SHADE_MEDIUM
inherited_from | \Zend\Console\Adapter\AdapterInterface::FILL_SHADE_MEDIUM |
---|
LINE_BLOCK
inherited_from | \Zend\Console\Adapter\AdapterInterface::LINE_BLOCK |
---|
LINE_DOUBLE
inherited_from | \Zend\Console\Adapter\AdapterInterface::LINE_DOUBLE |
---|
LINE_NONE
inherited_from | \Zend\Console\Adapter\AdapterInterface::LINE_NONE |
---|
LINE_SINGLE
inherited_from | \Zend\Console\Adapter\AdapterInterface::LINE_SINGLE |
---|