Popis
string
readline ( [string prompt])
Tato funkce vrßtφ jeden °ßdek od u╛ivatele. M∙╛ete specifikovat °et∞zec,
kter² se mß u╛ivateli zobrazit jako v²zva. Z vrßcenΘho °ßdku je odstran∞na
sekvence konce °ßdku. Do historie tento °ßdek musφte p°idat sami pomocφ
readline_add_history().
P°φklad 1. readline() //ziska 3 prikazy uzivatele
for ($i=0; $i < 3; $i++) {
$line = readline ("Command: ");
readline_add_history ($line);
}
//vypise historii
print_r (readline_list_history());
//vypise promenne
print_r (readline_info()); |
|