所以我有一個數組象下面這樣:如何基於數組中的值顯示數組列表?
Array
(
[0] => Array
(
[model] => COROLLA
[trim] => L
[msrp] => 16,800
[type] => car
)
[1] => Array
(
[model] => COROLLA
[trim] => LE
[msrp] => 18,300
[type] => car
)
我需要能夠調用類型的所有獨特的價值觀和遍歷它們將其返回彷彿類型爲一類。所以,我需要讓所有的車「作爲一種類型另一份與「範」的所有車輛的類型等車輛我這得到唯一值的列表:
$type = array();
foreach($cars as $car){
$type[] = $car['type'];
}
$type = array_unique($type);
我如何搜索它們的值並返回頂層數組真的遇到了一堵牆。我知道這是基本的,但我很掙扎。
可否請你改一下你想要什麼? (例如,提供示例輸出將有很大幫助) – bwoebi 2014-09-25 22:01:33
也可以查看http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work – 2014-09-25 22:18:03