是的,PHP遍歷操作支持關聯數組??梢允褂胒oreach循環來遍歷關聯數組,例如:
$fruits = array("apple" => "red", "banana" => "yellow", "orange" => "orange"); foreach($fruits as $key => $value){ echo "The color of $key is $value <br>"; }
這樣就可以遍歷輸出關聯數組中的鍵和值。