Skip to content

Instantly share code, notes, and snippets.

@al5dy
Last active July 7, 2016 07:47
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save al5dy/df998d0ce48d2eff81506e94f2ade42f to your computer and use it in GitHub Desktop.
Save al5dy/df998d0ce48d2eff81506e94f2ade42f to your computer and use it in GitHub Desktop.
Получить ID из любого YouTube видео URL (PHP)
function get_youtube_id( $url = '' ) {
$url = preg_replace('~https?://(?:[0-9A-Z-]+\.)?(?:youtu\.be/| youtube(?:-nocookie)?\.com\S*?[^\w\s-])([\w-]{11})(?=[^\w-]|$)(?![?=&+%\w.-]*(?:[\'"][^<>]*>| </a>))[?=&+%\w.-]*~ix', '$1', $url);
return $url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment