2010/5/5 François Beausoleil <[email protected]>
> Hello all!
>
> We're seeing inconsistent json decoding between PHP versions:
> http://gist.github.com/390090
>
> Calling json_decode() from 5.2.6 returns an associative array when asked,
> while 5.2.10 always returns a stdClass. Is this a bug or a problem with my
> calling convention?
>
> Thanks!
> François
By the way, if you're stuck on 5.2.10, you could simply cast the result to
array:
var_dump((array)json_decode('{"_urls": ["a", "b"]}'));
Michiel