json_encode()自动将数组转换为对象

时间:2014-03-11 19:09:10

标签: php json

当我在json_encode()中使用PHP对数组进行编码时,所有内容都会在此处完成,但是当我使用json_decode()对其进行解码时,它会给我stdClass个对象而不是数组。 这是我的代码:

echo $json=json_encode(array('a'=>1,'b'=>2));
echo '<br>';
print_r(json_decode($json));

// and the result of PHP script is :
{"a":1,"b":2}
// stdClass Object ( [a] => 1 [b] => 2 )

什么将它从数组转换为对象?

我可以将json编码的字符串传递给url以在另一个页面上获取数据,还是存在可以进行某些url编码的任何函数?

1 个答案:

答案 0 :(得分:9)

json_decode()需要额外的参数来解码到数组。

json_decode($json, true)