您可以使用while
循環來遍歷PHP數組,下面是一個示例:
$colors = array("red", "green", "blue");
$index = 0;
while ($index < count($colors)) {
echo $colors[$index] . "<br>";
$index++;
}
在上面的示例中,我們創建了一個包含顏色的數組 $colors
,然后使用 while
循環和一個 $index
變量來遍歷數組。在每次迭代中,我們打印當前索引處的顏色,并遞增 $index
變量以繼續遍歷數組的下一個元素。