我从YouTube v2获得此JSON响应:http://gdata.youtube.com/feeds/api/users/youtube/uploads?orderby=published&max-results=1&alt=json
。
它只返回一个视频条目,因为我想要。我想获得该视频的标题?我目前使用以下代码:
$URL = file_get_contents('http://gdata.youtube.com/feeds/api/users/youtube/uploads?orderby=published&max-results=1&alt=json');
$readjson = json_decode($URL);
$title = $readjson->{'feed'}->{'entry'}->{'title'}->{'$t'};
echo $title;
但看起来它不是普通的JSON树,因为它在视频entry
中有一个数组
所以我的代码没有用。任何想法如何获得?
答案 0 :(得分:2)
$title = $readjson->{'feed'}->{'entry'}[0]->{'title'}->{'$t'};