本節用php 實現 讀取控制檯鍵盤輸入的一行內容,模擬python中的input
輸入流
fopen
不僅能讀檔案,還可讀取指定內建協議的各種流,返回資源指標。fgets
讀取一行資源,失敗則返回false
實現
$handle = fopen('php://stdin','r');
$input = fgets($handle);
if($input){
echo $input;
}
fclose($handle);
本作品採用《CC 協議》,轉載必須註明作者和本文連結