ncurses_filter

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Set LINES for iniscr() and newterm() to 1 void ncurses_filter ( void ) 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 should be used at your own risk. This function i

ncurses_has_il

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Check for line insert- and delete-capabilities bool ncurses_has_il ( void ) Checks whether the terminal has insert- and delete-line-capabilities. Returns: Returns TRUE if the terminal has insert/delete-line capabilities, FALSE otherwise. This function is EXPERIMENTAL. The behaviour of this functio

ncurses_has_colors

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Checks if terminal has color capabilities bool ncurses_has_colors ( void ) Checks whether the terminal has color capabilities. This function can be used to write terminal-independent programs. ncurses must be initialized using ncurses_init() before calling this function. Returns: Return TRUE if the terminal has color capabilities, FAL

ncurses_doupdate

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Write all prepared refreshes to terminal bool ncurses_doupdate ( void ) Compares the virtual screen to the physical screen and updates the physical screen. This way is more effective than using multiple refresh calls. Returns: Returns TRUE on success or FALSE on failure. This function is EXPERIMEN

ncurses_erasechar

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Returns current erase character string ncurses_erasechar ( void ) Returns the current erase character. Returns: The current erase char, as a string. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release

ncurses_delwin

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Delete a ncurses window bool ncurses_delwin ( resource $window ) Parameters: window 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 should be use

ncurses_deleteln

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Delete line at current position, move rest of screen up bool ncurses_deleteln ( void ) Deletes the current line under cursor position. All lines below the current line are moved up one line. The bottom line of window is cleared. Cursor position does not change. Returns: Returns FALSE on success, otherwise TRUE.

ncurses_delch

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Delete character at current position, move rest of line left bool ncurses_delch ( void ) Deletes the character under the cursor. All characters to the right of the cursor on the same line are moved to the left one position and the last character on the line is filled with a blank. The cursor position does not change. Returns: Returns

ncurses_delay_output

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Delay output on terminal using padding characters int ncurses_delay_output ( int $milliseconds ) Parameters: milliseconds This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future relea

ncurses_echo

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Activate keyboard input echo bool ncurses_echo ( void ) Enables echo mode. All characters typed by user are echoed by ncurses_getch(). Returns: Returns FALSE on success, TRUE if any error occurred. This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentati