görüntülenme için:
$JSON = file_get_contents("https://gdata.youtube.com/feeds/api/videos/{$video_ID}?v=2&alt=json");
$JSON_Data = json_decode($JSON);
$views = $JSON_Data->{'entry'}->{'yt$statistics'}->{'viewCount'};
video süresi için de bu :
$url = "http://gdata.youtube.com/feeds/api/videos/". $video_id;
$doc = new DOMDocument;
$doc->load($url);
$duration = $doc->getElementsByTagName('duration')->item(0)->getAttribute('seconds');
$mts_video_length = (floor($duration/60) < 10 ? "0".floor($duration/60) : floor($duration/60)) . ":" . $duration%60;
bir sıkıntı göremedim ben bunlarda