在PHP中,可以使用foreach
循环来遍历数组并保持键值。示例如下:
$fruits = array("apple" => "red", "banana" => "yellow", "orange" => "orange");
foreach($fruits as $key => $value) {
echo "The color of " . $key . " is " . $value . "<br>";
}
在上面的示例中,$key
变量保存数组元素的键,$value
变量保存数组元素的值。通过这种方法,可以在循环中访问数组元素的键和值,并保持键值关系。