您好我在从link检索值时遇到问题。 到目前为止,我一直在使用这行代码。
$str = "https://gdata.youtube.com/feeds/api/videos/VdbUBcOCU_A";
$blow =(explode("'",$str));
print_r($blow);
并回应“数组”会感谢任何帮助如何从链接中检索值。感谢。
答案 0 :(得分:0)
如果我是对的,你使用的是PHP?
建议您在https://developers.google.com/youtube/2.0/developers_guide_php
使用Google PHP客户端库对于您的情况,请参阅https://developers.google.com/youtube/2.0/developers_guide_php#Video_Entry_Contents
$videoEntry = $yt->getVideoEntry('VdbUBcOCU_A');
printVideoEntry($videoEntry);
function printVideoEntry($videoEntry)
{
echo 'Video: ' . $videoEntry->getVideoTitle() . "\n";
echo 'Video ID: ' . $videoEntry->getVideoId() . "\n";
echo 'Updated: ' . $videoEntry->getUpdated() . "\n";
}