readline
(PHP 4, PHP 5, PHP 7)
readline — 读取一行
参数
-
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());
?>