我有一個PHP
函數給我兩個獨立的JSON數組(array1和array2)。我怎樣才能把它們合併在一個物體的屬性,就像這樣:使兩個數組的對象與單獨的數組作爲屬性
{
"array1": [ {"type": "column", "valueField": ..., "descriptionField": ..., }]
"array2": [ {"type": "column", "valueField": ..., "descriptionField": ..., }]
}
在此先感謝
向我們展示您的代碼,結果您想要什麼?你的嘗試結果是什麼?另外,你應該閱讀[How to ask](http://stackoverflow.com/help/how-to-ask) – Nytrix
'$ result =「[$ array1,$ array2]」;'也許 – AbraCadaver