PHP > File_get_contents + json_decode不起作用



我有使用Json的问题:http://api.justin.tv/api/stream/list.json?channel=Herdyn,我需要得到一些关于直播的信息。我的代码:

<?php
$json = file_get_contents('http://api.justin.tv/api/stream/list.json?channel=Herdyn');
$obj = json_decode($json);
echo $obj->{'name'};
?>

当我把它上传到服务器:http://blx.patrikpapso.com/herdyn/,没有错误,只是空白页面,不知道该怎么做…

执行var_dump($obj);,您将看到没有属性"name"。JSON是一个数组,其中包含一个具有以下属性的对象:

$firstObj = $obj[0];
echo $firstObj->name;

或者

echo $obj[0]->name;

应该至少有一个E_NOTICE

相关内容

  • 没有找到相关文章

最新更新