ncurses_echochar

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Single character output including refresh int ncurses_echochar ( int $character ) Parameters: character 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 fu

ncurses_end

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Stop using ncurses, clean up the screen int ncurses_end ( 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 is curr

ncurses_erase

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Erase terminal screen bool ncurses_erase ( void ) Fills the terminal screen with blanks. Created blanks have the current background rendition, set by ncurses_bkgd(). Returns: Returns TRUE on success or FALSE on failure. This function is EXPERIMENTAL. The behaviour of this function, its name, and

ncurses_define_key

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Define a keycode int ncurses_define_key ( string $definition, int $keycode ) Parameters: definition keycode This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without noti

ncurses_def_prog_mode

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Saves terminals (program) mode bool ncurses_def_prog_mode ( void ) Saves the current terminal modes for program (in curses) for use by ncurses_reset_prog_mode(). Returns: Returns FALSE on success, otherwise TRUE. This function is EXPERIMENTAL. The behaviour of this function, its name, and surroundi

ncurses_curs_set

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Set cursor state int ncurses_curs_set ( int $visibility ) Parameters: visibility 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 a

ncurses_color_set

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Set active foreground and background colors int ncurses_color_set ( int $pair ) Sets the active foreground and background colors. Any characters written after this function is invoked will have these colors. This function requires terminal colors to be supported and initialized using ncurses_start_color() beforehand. ncurses uses color pairs to specify both fo

ncurses_def_shell_mode

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Saves terminals (shell) mode bool ncurses_def_shell_mode ( void ) Saves the current terminal modes for shell (not in curses) for use by ncurses_reset_shell_mode(). Returns: Returns FALSE on success, TRUE otherwise. This function is EXPERIMENTAL. The behaviour of this function, its name, and surroun

ncurses_color_content

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Retrieves RGB components of a color int ncurses_color_content ( int $color, int &$r, int &$g, int &$b ) Retrieves the red, green, and blue components for the given color definition. Terminal color capabilities must be initialized with ncurses_start_color() prior to calling this function. Parameters: color

ncurses_del_panel

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Remove panel from the stack and delete it (but not the associated window) bool ncurses_del_panel ( resource $panel ) Parameters: panel This function is currently not documented; only its argument list is available.