php遍历数组索引
时间: 2023-08-02 07:26:16 浏览: 75
PHP数组遍历方法小结
可以使用 foreach 循环来遍历数组索引,示例代码如下:
```
$fruits = array('apple', 'banana', 'orange');
foreach ($fruits as $key => $value) {
echo 'Index: ' . $key . ', Value: ' . $value . '<br>';
}
```
输出结果为:
```
Index: 0, Value: apple
Index: 1, Value: banana
Index: 2, Value: orange
```
在循环体内,$key 变量表示当前数组元素的索引,$value 变量表示当前数组元素的值。
阅读全文