アカウント名:
パスワード:
より多くのコメントがこの議論にあるかもしれませんが、JavaScriptが有効ではない環境を使用している場合、クラシックなコメントシステム(D1)に設定を変更する必要があります。
アレゲは一日にしてならず -- アレゲ研究家
getstrtest.php (スコア:1)
PHP TEST SCRIPT : ncurses_getstr() test
compile:
./configure -with-ncurses
<?php
ncurses_init();
$str = "";
while ( $str != "quit" ) {
ncurses_move(2,4);
ncurses_addstr("Input str:");
ncurses_getstr($str); // UNOFFICIAL FUNCTION
ncurses_move(6,4);
ncurses_addstr("str=" . $str );
}
ncurses_end();
?>
program has done.