当我在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编码的任何函数?