我有一个curl命令输出以下内容:
"{"meta":{"code":200},"data":{"username":"monstore","bio":"Art clothing line with our life scary tales as the imagination. info@heymonstore.com \/ +6281213162069 \/ BB PIN 293A4565","website":"http:\/\/www.heymonstore.com","profile_picture":"http:\/\/images.ak.instagram.com\/profiles\/profile_4472462_75sq_1354349840.jpg","full_name":"Monstore","counts":{"media":547,"followed_by":6472,"follows":129},"id":"4472462"}}"
这是curl命令:
$output = curl_exec($ch);
基本上上面就是$ output打印出来的东西。所以我试着解决这个问题:
$userinfo = json_decode($output, false);
然而它返回一个空数组。知道为什么吗?
答案 0 :(得分:1)
$userinfo = json_decode($output, true);
你需要指定你想要一个关联数组而不是json_decode中的对象:
答案 1 :(得分:0)
$ userinfo = json_decode($ output,true); //你能把它设置为true并试试吗?它对我有用。
从http://php.net/manual/en/function.json-decode.php开始,当为TRUE时,返回的对象将被转换为关联数组。