我创建了一个 json 输出,这就是它现在的样子:
{"attributes":{"next":4189646},"images":{"0":{"id":"4188043","title":"Easter Island ....
但我希望它看起来像:
{"attributes":{"next":4197237},"images":[{"id":4198434,"title":"Good Morning" ...
我怎样才能摆脱images
阵列ID?
为了将数组编码为[...]
而不是{"0":...}
,数组必须是“纯”索引数组。
这可以通过array_values()
首先运行它来轻松实现。