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.
json_encode(array(
    array(0 => "431.940054495913"),
    array(1 => "431.940054495913"),
));

Is rendered like this:

[
    ["431.940054495913"],
    {"1":"431.940054495913"}
]

Why are the two arrays rendered differently ?

share|improve this question
Difficult to understand what is being asked. Everything looks normal to me. – Layke Sep 8 '11 at 11:10
He wants to know why the elements with key '0' and key '1' are different when converted to JSON – Paul Dixon Sep 8 '11 at 11:12

1 Answer

up vote 17 down vote accepted

Any PHP array that can be rendered as a JSON array will be rendered as a JSON array: Any PHP array having only sequential numeric keys starting from 0 will be rendered as a JSON array.

This is the case for the first array: array(0 => "431.940054495913").

How to fix this

  • The JSON_FORCE_OBJECT flag will render all PHP arrays as JSON objects

    json_encode(array(0 => "431.940054495913"), JSON_FORCE_OBJECT);
    // {"0": "431.940054495913"}
    
    json_encode(array(0 => "431.940054495913"));
    // ["431.940054495913"]
    
  • Alternatively, you could convert your PHP array to a PHP object:

    json_encode( (object) array(0 => "431.940054495913"));
    // {"0": "431.940054495913"}
    

    (if you don't want to render every array as object or if you don't have JSON_FORCE_OBJECT)

share|improve this answer
Thanks. Tried both and they both fix the issue. Good to know :) – Fuzzy Sep 8 '11 at 12:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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