0

我有一个 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);

但是它返回一个空数组。知道为什么吗?

4

2 回答 2

1
$userinfo = json_decode($output, true);

你需要指定你想要一个关联数组而不是来自 json_decode 的对象:

于 2013-09-26T04:19:55.503 回答
0

$userinfo = json_decode($output, true); //你能把它设置为true并尝试吗?它对我有用。

来自http://php.net/manual/en/function.json-decode.php,当 TRUE 时,返回的对象将被转换为关联数组。

于 2013-09-26T04:19:33.883 回答