Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following array structure:

Array
(
    [t] => 812
    [0] => Array
    (
        [5] => 649
        [6] => 12
    )

    [2] => Array
    (
        [0] => 10
    )

    [3] => Array
    (
        [0] => 1
    )

    [4] => Array
    (
        [0] => 152
    )
)

At the moment all the array indexes (apart from t) are integers.

I want to convert it to it's JSON equivalent using json_encode(), but when I do so any of the arrays that have just one index in them (index 0) get converted into an integer rather than an array.

E.g.

[2] => Array
(
    [0] => 10
)

gets converted to..

{"2":[10]

instead of..

{"2":[0:10]

It'd be fine for the JSON to use string indexes rather than integers if that fixed the problem..

{"2":["0":10]}

Any thoughts on how I can solve this one?

share|improve this question
[] is an array. {} is an object – PeeHaa 埽 Jul 10 '12 at 9:29
Debugging sucks, but is necessary sometimes. – hakre Jul 18 '12 at 8:21

closed as too localized by PeeHaa 埽, vascowhite, j0k, hakre, Graviton Jul 19 '12 at 2:33

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

up vote 3 down vote accepted

They are not converted to a single integer, but to an array with only one element!

In JSON square brackets [] denote an array, while curly brackets {} denote an object.

If you want to force json_encode to output objects, like in your example, you can choose the option JSON_FORCE_OBJECT (see docu):

$encoded = json_encode( yourArray, JSON_FORCE_OBJECT );
share|improve this answer
Perfect, did the trick nicely. I was all for iterating over the array and typecasting everything to strings! This is a much better solution.. thanks! – RichW Jul 10 '12 at 9:33

Use JSON_FORCE_OBJECT flag in json_encode.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.