我有这个代码,但我不确定我是否让它工作:
/**
* Function: youtube data grabber
*
* @description :
* @param $ : video code, url type (embed/url)
* @return : data array
* @author : Mamun.
* @last -modified-by: Mamun.
*/
if (! function_exists('youtube_data_grabber'))
{
function youtube_data_grabber($video_code, $link_type = "embed")
{
if ($video_code != '')
{
if ($link_type == "embed")
{
$splited_data = explode("=",$video_code);
$video_unique_code = substr(strrchr($splited_data[4],"/"),1,-strlen(strrchr($splited_data[4],"&")));
}
else if ($link_type == "url")
{
$splited_data = explode("=",$video_code);
$video_unique_code = substr($splited_data[1],0,-strlen(strrchr($splited_data[1],"&")));
}
else
{
return;
}
// set feed URL
$feedURL = 'http://gdata.youtube.com/feeds/api/videos/'.$video_unique_code;
// read feed into SimpleXML object
$sxml = simplexml_load_file($feedURL);
return $sxml;
}
}
} // End Youtube Function
我不确定如何激活它是我想说的。我将它放在控制器中,它位于我的一个页面的函数中。我没有任何语法错误。我只是不知道如何唤醒它并使其工作。我以为我可以放youtube_data_grabber('http://www.youtube.com/watch?v=LAcrFym10ZI', 'url');
,但那没有用。
我从这个博客获得了代码,并且我的 zend 功能正常工作。我之前测试过,没有错误。我只是在这个 youtube 部分遇到了麻烦。
有任何想法吗?