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 — Fügt eine Zeile zur History hinzu
Diese Funktion fügt eine Zeile zur Kommandozeilen-History hinzu.
prompt
Die zur History hinzuzufügende Zeile.
Gibt bei Erfolg true
zurück. Bei einem Fehler wird false
zurückgegeben.