好的,这是一个有趣的。
在输入副本并将Vimeo URL粘贴到输入框中时,我需要确定用户引用的源。对于那些不熟悉的人,Vimeo目前有4种不同的来源,可以通过简单的API访问:
有效的网址结构: http://vimeo.com/user3825208或https://vimeo.com/davekiss
有效的网址结构: http://vimeo.com/groups/eos550d或https://vimeo.com/groups/162
有效的网址结构: http://vimeo.com/channels/hd或https://vimeo.com/channels/201
有效的网址结构: http://vimeo.com/album/1919683或https://vimeo.com/album/mycustomname
基本上,我希望能够将URL运行到一个函数中,该函数将告诉我该URL属于哪个源。
我一直在为属于用户的视频使用此功能,但现在我需要扩展到所有来源。
sscanf(parse_url($url, PHP_URL_PATH), '/%d', $video_id);
也许我应该这样做四次? preg_match('???', $url);
感谢您的帮助!
答案 0 :(得分:2)
您不需要正则表达式:
function discoverVimeo($url)
{
if ((($url = parse_url($url)) !== false) && (preg_match('~vimeo[.]com$~', $url['host']) > 0))
{
$url = array_filter(explode('/', $url['path']), 'strlen');
if (in_array($url[0], array('album', 'channels', 'groups')) !== true)
{
array_unshift($url, 'users');
}
return array('type' => rtrim(array_shift($url), 's'), 'id' => array_shift($url));
}
return false;
}
以下将返回一个数组,其索引为id
,另一个索引为type
,它将是以下之一:
user
album
channel
group
答案 1 :(得分:1)
我会preg_match()以下正则表达式模式(按此顺序):
$channel_regex = '%vimeo\.com/channels/([a-zA-Z0-9]+)%/i';
$group_regex = '%vimeo\.com/groups/([a-zA-Z0-9]+)%/i';
$album_regex = '%vimeo\.com/album/([a-zA-Z0-9]+)%/i';
$user_regex = '%vimeo\.com/([a-zA-Z0-9]+)%/i';
这将正则表达式匹配:
vimeo.com/channels/...grab_this_data...
vimeo.com/groups/...grab_this_data...
vimeo.com/albums/...grab_this_data...
如果所有这些preg_matches都失败了(因此是用户URL),它将抓取url中的任何内容:
vimeo.com/...grab_this_data...
祝你好运。