Created
February 13, 2013 10:27
-
-
Save wwdboer/4943672 to your computer and use it in GitHub Desktop.
PHP: Get Vimeo ID
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function get_vimeoid( $url ) { | |
$regex = '~ | |
# Match Vimeo link and embed code | |
(?:<iframe [^>]*src=")? # If iframe match up to first quote of src | |
(?: # Group vimeo url | |
https?:\/\/ # Either http or https | |
(?:[\w]+\.)* # Optional subdomains | |
vimeo\.com # Match vimeo.com | |
(?:[\/\w]*\/videos?)? # Optional video sub directory this handles groups links also | |
\/ # Slash before Id | |
([0-9]+) # $1: VIDEO_ID is numeric | |
[^\s]* # Not a space | |
) # End group | |
"? # Match end quote if part of src | |
(?:[^>]*></iframe>)? # Match the end of the iframe | |
(?:<p>.*</p>)? # Match any title information stuff | |
~ix'; | |
preg_match( $regex, $url, $matches ); | |
return $matches[1]; | |
} |
nice work
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think the gist won't work for channels.
e.g. http://vimeo.com/channels/hdmusicvideos/90306625
I tried removing the string
videos
on line 9 and it worked for me