我正在制作一个网站,您可以从 youtube 搜索或音乐视频并在网站上播放它们。有一个问题。我无法正确地从 youtube 中提取歌曲和艺术家。我做了这个功能:
$watch = $_GET['var'];
//id of the video
$code = $watch;
// Get video feed info (xml) from youtube, but only the title | http://php.net/manual/en/function.file-get-contents.php
$video_feed = file_get_contents("http://gdata.youtube.com/feeds/api/videos?v=2&q=".$code."&max-results=1&fields=entry(title)&prettyprint=true");
// xml to object | http://php.net/manual/en/function.simplexml-load-string.php
$video_obj = simplexml_load_string($video_feed);
// Get the title string to a variable
$video_str = $video_obj->entry->title;
// Output
echo "<br/>\n";
$new = explode("-", $video_str);
$watch
是 youtube 视频 ID。youtube上的官方音乐视频是这样的。"eminem - without me"
我能得到这首歌和艺术家的唯一方法就是这样。但是对于音乐视频,格式是不同的。标题中没有“ - ”,所以我无法从 youtube 中提取我需要的信息。我想知道是否有其他方法可以做到这一点。