在 PHP 中,可以使用 readline() 函數來實現多行輸入的處理。以下是幾種處理多行輸入的方法:
$input = '';
while ($line = readline()) {
$input .= $line . PHP_EOL;
}
echo $input;
$input = '';
while (true) {
$line = readline();
if ($line === '###') {
break;
}
$input .= $line . PHP_EOL;
}
echo $input;
$input = '';
while ($line = fgets(STDIN)) {
$input .= $line;
}
echo $input;
這些方法可以根據具體需求選擇使用,可以根據輸入內容中的特定標記或者特定結束條件來判斷輸入是否結束。