Skip to content

Instantly share code, notes, and snippets.

@ViliamKopecky
Created September 15, 2016 10:18
Show Gist options
  • Save ViliamKopecky/8c0589df61dac4270b5efd9714fef458 to your computer and use it in GitHub Desktop.
Save ViliamKopecky/8c0589df61dac4270b5efd9714fef458 to your computer and use it in GitHub Desktop.
<?php
function yid($url) {
$pattern = '%^(?:https?://)?(?:www\.)?(?:youtu\.be/|youtube\.com(?:/embed/|/v/|/watch\?v=))([\w-]{10,12})$%x';
$result = preg_match($pattern, $url, $matches);
if ($result) {
return $matches[1];
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment