Note that readline_add_history() will add empty strings too.
<?php
$line = readline(">>> ");
if (!empty($line)) {
readline_add_history($line);
}
?>
(PHP 4, PHP 5, PHP 7, PHP 8)
readline_add_history — ヒストリに 1 行追加する
prompt
ヒストリに追加する行。
成功した場合に true
を、失敗した場合に false
を返します。