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_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_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_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_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_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_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_color

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Define a terminal color int ncurses_init_color ( int $color, int $r, int $g, int $b ) Defines or redefines the given color. When this function is called, all occurrences of the given color on the screen, if any, immediately change to the new definition. Color capabilities must be supported by the terminal and initialized using ncurses_start_color() prior to ca

ncurses_inch

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Get character and attribute at current position string ncurses_inch ( void ) Returns the character from the current position. Returns: Returns the character, as a string. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notic

ncurses_hline

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Draw a horizontal line at current position using an attributed character and max. n characters long int ncurses_hline ( int $charattr, int $n ) Parameters: charattr n This function is EXPERIMENTAL. The behaviour of this function, its