Query: readline
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
READLINE(3) 1 READLINE(3) readline - Reads a lineSYNOPSISstring readline ([string $prompt])DESCRIPTIONReads a single line from the user. You must add this line to the history yourself using readline_add_history(3).PARAMETERSo $prompt - You may specify a string with which to prompt the user.RETURN VALUESReturns a single string from the user. The line returned has the ending newline removed.EXAMPLESExample #1 readline(3) 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()); ?> PHP Documentation Group READLINE(3)
| Related Man Pages |
|---|
| rlfe(1) - debian |
| rmidish(1) - debian |
| term::readline(3pm) - redhat |
| get_defined_vars(3) - php |
| readline_callback_handler_install(3) - php |
| Similar Topics in the Unix Linux Community |
|---|
| Readline Formatting |
| Error:readline() on closed filehandle Perl |
| using readline with parameter |
| How do I get my shell back to normal readline? |
| Bypass Read Line in profile through AIX command |