[insert_php]
function videoInfo($videoId)
{
$videoUrl = ‘http://gdata.youtube.com/feeds/api/videos/’ . $videoId . ‘?v=2&alt=json’;
$jsonOutput = file_get_contents($videoUrl);
$json = json_decode($jsonOutput, true);
$videoInfoContainer[0] = $json[‘entry’][‘title’][‘$t’];
$videoInfoContainer[1] = $json[‘entry’][‘media$group’][‘media$description’][‘$t’];
$videoInfoContainer[2] = $json[‘entry’][‘yt$statistics’][‘viewCount’];
$videoInfoContainer[3] = $json[‘entry’][‘published’][‘$t’];
return $videoInfoContainer;
}
[/insert_php]
-
[insert_php] echo $videoInformation[0]; [/insert_php]
[insert_php] echo ‘Դիտումներ` ‘ . $videoInformation[2];
[/insert_php] -
[insert_php] echo wordwrap($videoInformation[0]);
[/insert_php]
[insert_php] echo ‘Դիտումներ` ‘ . $videoInformation[2];
[/insert_php] -
[insert_php] echo $videoInformation[0];
[/insert_php]
[insert_php] echo ‘Դիտումներ` ‘ . $videoInformation[2];
[/insert_php] -
[insert_php] echo $videoInformation[0]; [/insert_php]
[insert_php] echo ‘Դիտումներ` ‘ . $videoInformation[2];
[/insert_php]





