(PHP 4, PHP 5, PHP 7, PHP 8)
readline — 讀取一行
prompt
你可以指定一個字符串來作為用戶的提示信息
從用戶端返回一個行字符串.返回的該行的行尾換行符會被刪除
示例 #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());
?>