ncurses_newwin

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Create a new window resource ncurses_newwin ( int $rows, int $cols, int $y, int $x ) Creates a new window to draw elements in. When creating additional windows, remember to use ncurses_getmaxyx() to check for available space, as terminal size is individual and may vary. Parameters: rows Number of rows

ncurses_mvwaddstr

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Add string at new position in window int ncurses_mvwaddstr ( resource $window, int $y, int $x, string $text ) Parameters: window y x text This function is EXPERIMENTA

ncurses_napms

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Sleep int ncurses_napms ( 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 release of PHP. This function should be used at your own

ncurses_new_panel

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Create a new panel and associate it with window resource ncurses_new_panel ( resource $window ) Parameters: window This function is currently not documented; only its argument list is available.

ncurses_noqiflush

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Do not flush on signal characters void ncurses_noqiflush ( 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 cur

ncurses_nonl

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Do not translate newline and carriage return / line feed bool ncurses_nonl ( 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. Th

ncurses_nocbreak

(PHP 4 >= 4.0.7, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Switch terminal to cooked mode bool ncurses_nocbreak ( void ) Returns terminal to normal (cooked) mode. Initially the terminal may or may not be in cbreak mode as the mode is inherited. Therefore a program should call ncurses_cbreak() and ncurses_nocbreak() explicitly. Returns: Returns TRUE if any error occurred, otherwise FALSE.

ncurses_newpad

(PHP 4 >= 4.3.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Creates a new pad (window) resource ncurses_newpad ( int $rows, int $cols ) Parameters: rows cols This function is currently not documented; only its argument list is available.

ncurses_mvhline

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Set new position and draw a horizontal line using an attributed character and max. n characters long int ncurses_mvhline ( int $y, int $x, int $attrchar, int $n ) Parameters: y x attrchar n

ncurses_mvvline

(PHP 4 >= 4.2.0, PHP 5 < 5.3.0, PECL ncurses >= 1.0.0) Set new position and draw a vertical line using an attributed character and max. n characters long int ncurses_mvvline ( int $y, int $x, int $attrchar, int $n ) Parameters: y x attrchar n