Readline İşlevleri
PHP Manual

readline

(PHP 4, PHP 5)

readlineReads a line

Açıklama

string readline ([ string $prompt ] )

Reads a single line from the user. You must add this line to the history yourself using readline_add_history().

Değiştirgeler

prompt

You may specify a string with which to prompt the user.

Dönen Değerler

Returns a single string from the user. The line returned has the ending newline removed.

Örnekler

Örnek 1 readline() Example

<?php
//get 3 commands from user
for ($i=0$i 3$i++) {
        
$line readline("Command: ");
        
readline_add_history($line);
}

//dump history
print_r(readline_list_history());

//dump variables
print_r(readline_info());
?>


Readline İşlevleri
PHP Manual