Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PHP: ncurses_raw - Manual
[go: Go Back, main page]

PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net

search for in the

ncurses_refresh" width="11" height="7"/> <ncurses_qiflush
Last updated: Wed, 01 Nov 2006
view this page in

ncurses_raw

(PHP 4 >= 4.1.0, PHP 5)

ncurses_raw -- 端末を raw モードに変更する

説明

bool ncurses_raw ( void )

警告

この関数は、 実験的 なものです。この関数の動作・ 名前・その他ドキュメントに書かれている事項は、予告なく、将来的な PHP のリリースにおいて変更される可能性があります。 この関数は自己責任で使用してください。

ncurses_raw() は、端末を raw モードに 変更します。row モードは cbreak モードと似ており、タイプされた 文字はすぐにプログラムへ渡されます。違う点は、raw モードの場合は 中断(interrupt)、終了(quit)、停止(suspend)およびフロー制御文字も そのまま渡され、シグナルは発生しないということです。 何らかのエラーが発生した場合に TRUE、それ以外の場合に FALSE を返します。

ncurses_noraw()ncurses_cbreak()ncurses_nocbreak() も参照ください。



add a note add a note User Contributed Notes
ncurses_raw
israelbz at yahoo dot com dot mx
16-Mar-2006 06:15
nc_raw() will reset ncurses_halfdelay():

<?php
 
//This don't set the halfdelay mode
 
ncurses_halfdelay(9);
 
ncurses_raw();
?>

If you want set halfdelay and raw be shure put halfdelay after
raw:

<?php
 
//Correct sets the halfdelay mode
 
ncurses_raw();
 
ncurses_halfdelay(9);
?>

ncurses_refresh" width="11" height="7"/> <ncurses_qiflush
Last updated: Wed, 01 Nov 2006
 
 
show source | credits | sitemap | contact | advertising | mirror sites