在PHP中,可以使用for循環遍歷數組。以下是使用for循環遍歷數組的示例代碼:
<?php
$numbers = array(1, 2, 3, 4, 5);
for ($i = 0; $i < count($numbers); $i++) {
echo $numbers[$i] . " ";
}
?>
輸出:
1 2 3 4 5
在這個示例中,我們首先定義了一個包含數字的數組 $numbers
。然后,我們使用for循環遍歷數組。循環的條件是 $i
小于數組長度 count($numbers)
。在循環體內部,我們通過數組下標 $i
來訪問并輸出數組中的元素。