我想「關聯」兩個數組,我需要合併日期但將第二行數據添加到另一個數組。Laravel 5.4 - 關聯兩個數組
個例將更加understable:
陣列1:
array:2 [▼
"July 2017" => 2
"May 2017" => 1
]
陣列2:
array:5 [▼
"April 2017" => 1
"July 2017" => 1
"June 2017" => 1
"March 2016" => 1
"September 2016" => 1
]
結果:
array [
['April 2017', 1, 0],
['July 2017', 1, 2],
['June 2017', 1, 0],
['March 2016', 1, 0],
['September 2016', 1, 0],
['May 2017', 0, 1]
]
所有月份同名(和年份)結合在一起。數組1中的數據在數組2之後添加。因此它變成了一個數組數組。
但是我找不到任何執行此項工作的功能。
謝謝你的幫助!
你嘗試過什麼到現在? https://stackoverflow.com/help/how-to-ask – JohnWayne
我發現'array_merge'之類的東西,但它是一個加法,我需要一個多一個簡單的加法 – TuxxyDOS
我認爲你的結果集有問題,請檢查! ! –