在我的網站上,我有一個通過foreach
生成的產品列表,並創建了一個多維數組。在多維數組中搜索
陣列是這樣的:(短) http://k44.kn3.net/73194E0F9.jpg
我需要將此多維數組中進行搜索,如果的["model"]
重複的值。
總之,我不想用相同的["model"]
陣列顯示2個產品做定義:
foreach ($results as $result) {
$this->data['products'][] = array(
'product_id' => $result['product_id'],
'model' => $corto,
'thumb' => $image,
'Disponibilidad' => $rstock,
'name' => $nombre,
'description' => utf8_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, 100) . '..',
'price' => $price,
'special' => $special,
'tax' => $tax,
'rating' => $result['rating'],
'reviews' => sprintf($this->language->get('text_reviews'), (int)$result['reviews']),
'href' => $this->url->link('product/product', 'path=' . $this->request->get['path'] . '&product_id=' . $result['product_id'])
);
}
403禁止 - 檢查圖像 – mleko
@mleko這裏工作得很好。 – 13ruce1337
@ 13ruce1337現在也適用於我 – mleko