我想插入另一個項目到我現有的JSON數組中。PHP - 在嵌套的JSON數組中添加項目
{
"gallery": [
{
"titel": "Gallery 1",
"thumb": "http://via.placeholder.com/150x150",
"images": [{
"image": "http://via.placeholder.com/150x150"
},{
"image": "http://via.placeholder.com/150x150"
},{
"image": "http://via.placeholder.com/150x150"
},{
"image": "http://via.placeholder.com/150x150"
},{
"image": "http://via.placeholder.com/150x150"
},{
"image": "http://via.placeholder.com/150x150"
}]
}, {
"titel": "Gallery 2",
"thumb": "http://via.placeholder.com/150x150",
"images": [{
"image": "http://via.placeholder.com/150x150"
},{
"image": "http://via.placeholder.com/150x150"
}]
}
]
}
在「相冊1」或「圖庫2」等等... 較寬的圖象是要被添加。
如何爲相應的「標題」添加新的特定圖像?
最實用的方法可能是您的JSON字符串轉換成一個PHP對象與JSON_Decode()。然後你可以直接操縱對象,迭代它等等。如果我能找到一個好例子,我會在這裏發佈它。 –