予有這種類型的JSON對象:在PHP解析JSON陣列和值添加到PHP陣列
{
"order": {
"Food": "[Test 1, Test 2, Test 0, Test 3, Test 1, Test 3, Test 11, Test 7, Test 9, Test 8, Test 2]",
"Quantity": "[2, 3, 6, 2, 1, 7, 10, 2, 0, 0, 1]"
},
"tag": "neworder"
}
我已經使用json_decode但我想利用內部食品和數量的值,並將它們存儲內一個PHP數組,我嘗試了很多方法,但真的沒有運氣。 有人可能會指向正確的方式來做到這一點,或者是我的JSON消息有問題?
你能展示一些你所使用的代碼? – Muc
看起來「食物」和「質量」值本身是json字符串 –
foreach($ parsedJSON-> order-> Food as $ mydata) { $ response [「test2」] = $ mydata; } – user1732457