ncurses_init_pair

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Define a color pair int ncurses_init_pair ( int $pair, int $fg, int $bg ) Defines or redefines the given color pair to have the given foreground and background colors. If the color pair was previously initialized, the screen is refreshed and all occurrences of it are changed to reflect the new definition. Color capabilities must be initialized using ncurses_st

ncurses_init

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Initialize ncurses void ncurses_init ( void ) Initializes the ncurses interface. This function must be used before any other ncurses function call. Note that ncurses_end() must be called before exiting from the program, or the terminal will not be restored to its proper non-visual mode. Returns: No value is returned.

ncurses_insch

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Insert character moving rest of line including character at current position int ncurses_insch ( int $character ) Parameters: character This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in

ncurses_insdelln

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Insert lines before current line scrolling down (negative numbers delete and scroll up) int ncurses_insdelln ( int $count ) Parameters: count This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without noti

ncurses_insertln

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Insert a line, move rest of screen down int ncurses_insertln ( void ) Inserts a new line above the current line. The bottom line will be lost. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function sh

ncurses_insstr

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Insert string at current position, moving rest of line right int ncurses_insstr ( string $text ) Parameters: text This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PH

ncurses_instr

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Reads string from terminal screen int ncurses_instr ( string &$buffer ) Reads a string from the terminal screen and returns the number of characters read from the current character position until end of line. Parameters: buffer The characters. Attributes will be stripped. Returns:

ncurses_isendwin

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Ncurses is in endwin mode, normal screen output may be performed bool ncurses_isendwin ( void ) Checks if ncurses is in endwin mode. Returns: Returns TRUE, if ncurses_end() has been called without any subsequent calls to ncurses_wrefresh(), FALSE otherwise. This function is EXPERIMENTAL. The behavi

ncurses_keyok

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Enable or disable a keycode int ncurses_keyok ( int $keycode, bool $enable ) Parameters: keycode enable This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice i

ncurses_keypad

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Turns keypad on or off int ncurses_keypad ( resource $window, bool $bf ) Parameters: window bf This function is currently not documented; only its argument list is available.