创建一个json输出

时间:2012-05-17 15:36:09

标签: php json

我创建了一个json输出,这就是它现在的样子:

{"attributes":{"next":4189646},"images":{"0":{"id":"4188043","title":"Easter Island ....

但我希望它看起来像:

{"attributes":{"next":4197237},"images":[{"id":4198434,"title":"Good Morning" ...

如何摆脱images数组ID?

1 个答案:

答案 0 :(得分:3)

为了将数组编码为[...]而不是{"0":...},数组必须是“纯”索引数组。

首先通过array_values()运行它可以轻松实现。