在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变量以遍历数组中的下一个元素。