json字符串解码为数组

时间:2013-12-24 09:53:33

标签: php json

我的代码如下。

            $code = json_decode($json,true);
    var_dump($code);
    echo "1";
    echo "Numbers of tweets containing this link : $code->{'count'}"; //some issue here  line (x)

但         后续代码var_dump($代码); 给出:

array (size=2)
  'count' => int 1602
  'url' => string 'http://www.youtube.com/watch/?v=yOutxpoXnfg' (length=43)

我的代码出了什么问题? 第x行没有显示任何内容。

1 个答案:

答案 0 :(得分:3)

true会转换为json_decode()的关联数组格式,因此请更改为:

echo "Numbers of tweets containing this link :". $code['count'];