是的,PHP遍历操作支持关联数组。可以使用foreach循环来遍历关联数组,例如:
$fruits = array("apple" => "red", "banana" => "yellow", "orange" => "orange"); foreach($fruits as $key => $value){ echo "The color of $key is $value <br>"; }
这样就可以遍历输出关联数组中的键和值。