我创建了一个php脚本以获取youtube视频图像。我的代码运行正常。唯一的问题是我无法获得youtube视频标题并将其显示在图像附近。知道怎么做吗?
<?php
$find_youtube = "http://www.youtube.com";
if(preg_match("[$find_youtube]", $row['comment'])){
parse_str( parse_url( $row['comment'], PHP_URL_QUERY ), $my_array_of_vars );
$row['comment'] = preg_replace("/\s*[a-zA-Z\/\/:\.]*youtube.com\/watch\?v=([a-zA-Z0-9\-_]+)([a-zA-Z0-9\/\*\-\_\?\&\;\%\=\.]*)/i", "</br><table border='0'><td><img src='http://img.youtube.com/vi/$1/default.jpg' title='YouTube Video' alt='YouTube Video'/></td><td width='250px;' bgcolor='#FDF5E6'>VIDEO TITLE GOES HERE</td></table>", $row['comment']);
}
?>
答案 0 :(得分:1)
https://dl.google.com/googleio/2010/googleapis-how-google-builds-apis.pdf
<?php
$id = 'VIDEOID';
$xmlData = simplexml_load_string(file_get_contents("http://gdata.youtube.com/feeds/api/videos/{$id}?fields=title"));
$title = (string)$xmlData->title;
echo $title;
?>