我有這樣的輸出:PHP循環多維關聯數組
我沒有任何想法,我怎樣才能讓我的數組是這樣的:
$array[
0 => [
'item_id' => 6,
'price' => "2311.00",
'qty' => 12,
'discount' => 0
],
1 => [
'item_id' => 7,
'price' => "1231.00",
'qty' => 1,
'discount' => 12
],
2 => [
'item_id' => 8,
'price' => "123896.00",
'qty' => 0,
'discount' => 24
]
]
我已經開始了循環,但我真的不知道如何得到這種結構。
foreach($array as $wishlist){
foreach($wishlist as $k => $v){
}
}
顯示'$ wishlist'內容 – RomanPerekhrest
該數組是屏幕截圖。謝謝。 – Rbex