Skip to content

Instantly share code, notes, and snippets.

@seredniy
Created June 15, 2016 16:00
Show Gist options
  • Save seredniy/94cc06e105b0a2077d28381f4b2035db to your computer and use it in GitHub Desktop.
Save seredniy/94cc06e105b0a2077d28381f4b2035db to your computer and use it in GitHub Desktop.
// Выдираем айди видео с ютуба
// Выдираем айди видео с ютуба
function parse_yturl($url)
{
$pattern = '#^(?:https?://)?(?:www\.)?(?:youtu\.be/|youtube\.com(?:/embed/|/v/|/watch\?v=|/watch\?.+&v=))([\w-]{11})(?:.+)?$#x';
preg_match($pattern, $url, $matches);
return (isset($matches[1])) ? $matches[1] : false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment