2014-07-11 70 views

回答

0

請嘗試下面的代碼。你會檢索你的觀點和你的頭銜。爲了獲取更多的數據,看看https://gdata.youtube.com/feeds/api/videos/FYpunY-gXxU?v=2&alt=json,並嘗試找出自己(最佳實踐;))

$JSON = file_get_contents("https://gdata.youtube.com/feeds/api/videos/FYpunY-gXxU?v=2&alt=json"); 
    $JSON_Data = json_decode($JSON); 
    $views = $JSON_Data->{'entry'}->{'yt$statistics'}->{'viewCount'}; //Title 
    $title = $JSON_Data->{'entry'}->{'title'}->{'$t'}; 
    $title = str_replace('"','"',$titel); 
+0

謝謝,但我需要得到的名稱和鏈接或ID爲相關視頻。可以在https://gdata.youtube.com/feeds/api/videos/FYpunY-gXxU/related?v=2&alt=json找到JSON版本 – user2008804

0
<?php 
$JSON = file_get_contents("http://gdata.youtube.com/feeds/api/videos/FYpunY-gXxU/related?v=2&alt=json"); 
$JSON_Data = json_decode($JSON); 
$title = $JSON_Data->{'feed'}->{'entry'}; 
for ($i = 1; $i < 25; $i++) 
{ 
    echo ($title[$i]->{'title'}->{'$t'}) . "<br />"; 
    echo $title[$i]->{'link'}[0]->{'href'} . "<br /><br />"; 
} 
?> 
相關問題