Q
組合多個陣列
-3
A
回答
0
您必須爲此編寫一個javascript代碼。
var primarJson = {
"1" : [1, 2,3,4],
"2" : [5, 6,7,8],
"3" : [9, 10,11,12],
"4" : [13, 14,15,16]
}
var combinedJson = { "final" : []}
for(var i in primarJson){
combinedJson.final = combinedJson.final.concat(primarJson[i]);
}
+0
這個問題被標記爲PHP,而不是Javascript。 – Barmar
+0
哦!我的PHP不好,你可以使用array_merge爲每個json數組對象,並將它們推入一個新的數組中。 –
0
<?php
$primarJson = '{
"1" : [1, 2,3,4],
"2" : [5, 6,7,8],
"3" : [9, 10,11,12],
"4" : [13, 14,15,16]
}';
$finalArray = json_decode('{"final" : []}', true);
foreach (json_decode($primarJson) as $key => $value) {
$finalArray['final'] = array_merge($value, $finalArray['final']);
}
print_r(json_encode($finalArray));
?>
相關問題
- 1. 組合多個JSON陣列
- 2. 組合多個陣列
- 3. PHP-多維陣列組合
- 4. 在PHP中組合多個陣列
- 5. 如何組合多個陣列
- 6. 多個陣列元素的組合
- 7. 結合的多陣列一個陣列
- 8. 陣列組合的陣列
- 9. 將兩個陣列合併或組合成單個陣列
- 10. 合併多個numpy陣列
- 11. 組合兩個數組1個陣列
- 12. 合併多個組合一起矩陣
- 13. 多個陣列分組 - ngRepeat
- 14. 將單元格的多個陣列的行組合到一個新陣列中
- 15. 陣列合併成多維數組
- 16. 結合陣列,形成多維數組
- 17. PHP陣列組合 - 一對多
- 18. 列組合矩陣
- 19. Fortran陣列組合
- 20. 組合NumPy陣列
- 21. Matlab組合陣列
- 22. D3 - 組合陣列
- 23. Powershell - 組合陣列
- 24. 多陣列結合
- 25. 如何2個陣列組合成1個陣列
- 26. 在到單個分組陣列合併兩個陣列PHP
- 27. 合併多個陣列值到一個數組值
- 28. 獲取所有值的每個組合在多個陣列
- 29. 組合多個陣列numpy的成一個
- 30. 合併多個陣列(對象),並比較另一個陣列
問題不清楚。你想要什麼樣的預期結果?你試過的代碼是什麼? –
'json_decode()'和'array_merge()'?你有什麼嘗試?預期結果? –
預期結果是什麼? –