Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeweltheme/fb80063d7aa8e59c99f1cc27890fc10a to your computer and use it in GitHub Desktop.
Save jeweltheme/fb80063d7aa8e59c99f1cc27890fc10a to your computer and use it in GitHub Desktop.
PHP: Get YouTube ID from URL
<?php
function get_ytid( $url ) {
preg_match( "#(?<=v=)[a-zA-Z0-9-]+(?=&)|(?<=v\/)[^&\n]+|(?<=v=)[^&\n]+|(?<=youtu.be/)[^&\n]+#", $url, $matches );
return $matches[0];
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment