在PHP中,可以使用while循環來遍歷數組并進行輸入操作。以下是一個示例:
<?php
$fruits = array("apple", "banana", "orange");
$i = 0;
while($i < count($fruits)) {
$fruit = $fruits[$i];
echo "Enter the quantity of {$fruit}: ";
$quantity = readline();
echo "You have entered {$quantity} {$fruit}(s)." . PHP_EOL;
$i++;
}
?>
在上面的示例中,我們首先定義了一個包含水果名稱的數組。然后使用while循環來遍歷數組中的每個元素。在循環中,我們使用readline()函數來接收用戶輸入的水果數量,并對其進行輸出。最后,遞增$i變量以遍歷數組中的下一個元素。