readline_callback_read_char
(PHP 5 >= 5.1.0, PHP 7, PHP 8)
readline_callback_read_char — 文字を読み込み、改行を受け取ると readline コールバックインターフェイスに通知する
説明
readline_callback_read_char(): void
ユーザーが入力した文字を読み込みます。改行を受け取ると、この関数は readline_callback_handler_install() で インストールされた readline コールバックインターフェイスに対して 入力待ちを通知します。
パラメータ
この関数にはパラメータはありません。
戻り値
値を返しません。
例
readline コールバックインターフェイスの使用方法についての例は readline_callback_handler_install() を参照ください。
参考
- readline_callback_handler_install() - readline コールバックインターフェイスと端末を初期化し、 プロンプトを表示して結果をすぐに返す
- readline_callback_handler_remove() - インストールされたハンドラを削除し、端末の設定をもとに戻す
+add a note
User Contributed Notes 2 notes
thflori ¶
6 years ago
It seems this function is not blocking anymore:
<?php
do {
readline_callback_read_char();
$str = readline_info('line_buffer');
echo '.';
} while (strlen($str) < 10);
echo PHP_EOL . $str . PHP_EOL;
?>
Quis-NOZPAM- at omicidio-NOZPAM- dot nl ¶
18 years ago
Note that this function is blocking if there is no character to read
If you don`t want to get blocked, you should use the trick with stream_select()
It also only reads one char per call,
So if something else in your script is blocking,
you`ve got a problem
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google