Created
February 3, 2012 15:25
-
-
Save gcoop/1730737 to your computer and use it in GitHub Desktop.
hacy way to get the video id from a path
This file contains 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
<?php | |
$urls = array( | |
"http://vimeo.com/34633836", | |
"http://vimeo.com/34633836&dsfdsf&dhfjsdf=7fsdfjhdsk", | |
"http://www.youtube.com/watch?v=sYUKrUdYGHw&feature=youtu.be", | |
"http://www.youtube.com/watch?v=40F_kNd1VlY&feature=relmfu", | |
"http://www.youtube.com/watch?v=ia4O3CRSdDE&feature=g-all-u&context=G239539dFAAAAAAAAAAA" | |
); | |
function getId($str) { | |
if (strpos($str, "youtu") !== false) { | |
$parts = preg_split("/v=([a-zA-Z0-9_]*)/", $str, null, PREG_SPLIT_DELIM_CAPTURE); | |
return (isset($parts[1]) ? $parts[1] : false); | |
} else if (strpos($str, "vimeo") !== false) { | |
$parts = preg_split("/([0-9]{3,})/", $str, null, PREG_SPLIT_DELIM_CAPTURE); | |
return (isset($parts[1]) ? $parts[1] : false); | |
} | |
return false; | |
} | |
foreach ($urls as $url) { | |
echo("VIDEO ID: ".getId($url)."<br />"); | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment