我的代码如下。
$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行没有显示任何内容。
答案 0 :(得分:3)
true
会转换为json_decode()的关联数组格式,因此请更改为:
echo "Numbers of tweets containing this link :". $code['count'];