Readline 函数
PHP Manual

readline

(PHP 4, PHP 5, PHP 7)

readline读取一行

说明

string readline ([ string $prompt ] )

从用户端读取一行.你必须自己使用 readline_add_history() 将这一行添加到历史记录中

参数

prompt

你可以指定一个字符串来作为用户的提示信息

返回值

从用户端返回一个行字符串.返回的该行的行尾换行符会被删除

范例

Example #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 函数
PHP Manual