0
我想回顯飼料的YouTube視頻ID,並且它沒有返回任何東西。我使用下面的代碼如何從Youtube視頻源獲取視頻ID?
$JSON = file_get_contents("http://gdata.youtube.com/feeds/api/videos?&v=2&q=dance&alt=json");
$JSON_Data = json_decode($JSON);
foreach($JSON_Data->{'feed'}->{'entry'} as $video):
echo $video->{'id'};
endforeach;