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 ?
Is rendered like this:
Why are the two arrays rendered differently ? |
|||||
|
|
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: How to fix this
|
||||
|
|