PHP 클래스 kahlan\cli\Cli

파일 보기 프로젝트 열기: crysalead/kahlan 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$_vt100 array ANSI/VT100 color/format sequences.
$_vtbackground string The default background color.
$_vtcolor string The default color.
$_vtstyle string The default style.

공개 메소드들

메소드 설명
bell ( integer $count = 1 ) Bells.
color ( mixed $string, string | array $options = null ) Return a VT100 colored string.

보호된 메소드들

메소드 설명
_vt100 ( mixed $name ) : integer Returns a ANSI/VT100 number from a color name.
_vtbackground ( mixed $name ) : integer Returns the ANSI/VT100 number from a backgound color name.
_vtcolor ( mixed $name ) : integer Returns the ANSI/VT100 number from a color name.
_vtstyle ( mixed $name ) : integer Returns a ANSI/VT100 number from a style name.

메소드 상세

_vt100() 보호된 정적인 메소드

Returns a ANSI/VT100 number from a color name.
protected static _vt100 ( mixed $name ) : integer
$name mixed A color name string or a ANSI/VT100 number.
리턴 integer A ANSI/VT100 number.

_vtbackground() 보호된 정적인 메소드

Returns the ANSI/VT100 number from a backgound color name.
protected static _vtbackground ( mixed $name ) : integer
$name mixed A backgound color name string or a ANSI/VT100 number.
리턴 integer A ANSI/VT100 number.

_vtcolor() 보호된 정적인 메소드

Returns the ANSI/VT100 number from a color name.
protected static _vtcolor ( mixed $name ) : integer
$name mixed A color name string or a ANSI/VT100 number.
리턴 integer A ANSI/VT100 number.

_vtstyle() 보호된 정적인 메소드

Returns a ANSI/VT100 number from a style name.
protected static _vtstyle ( mixed $name ) : integer
$name mixed A style name string or a ANSI/VT100 number.
리턴 integer A ANSI/VT100 number.

bell() 공개 정적인 메소드

Bells.
public static bell ( integer $count = 1 )
$count integer Number of times that the bells must ring.

color() 공개 정적인 메소드

Return a VT100 colored string.
public static color ( mixed $string, string | array $options = null )
$string mixed The string to color.
$options string | array The possible values for an array are: - `'style`: a style code. - `'color'`: a color code. - `'background'`: a background color code. The string must respect one of the following format: - `'style;color;background'`. - `'style;color'`. - `'color'`.

프로퍼티 상세

$_vt100 보호되어 있는 정적으로 프로퍼티

ANSI/VT100 color/format sequences.
protected static array $_vt100
리턴 array

$_vtbackground 보호되어 있는 정적으로 프로퍼티

The default background color.
protected static string $_vtbackground
리턴 string

$_vtcolor 보호되어 있는 정적으로 프로퍼티

The default color.
protected static string $_vtcolor
리턴 string

$_vtstyle 보호되어 있는 정적으로 프로퍼티

The default style.
protected static string $_vtstyle
리턴 string