Created
June 27, 2016 23:17
-
-
Save techjewel/9a567107611fc3c3b9f652f480a459ca to your computer and use it in GitHub Desktop.
Get Youtube ID from Youtube Full URL
This file contains hidden or 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 | |
/*** | |
*** @Get youtube video ID from url | |
***/ | |
function get_youtube_id_from_url($url) { | |
$pattern = | |
'%^# Match any youtube URL | |
(?:https?://)? # Optional scheme. Either http or https | |
(?:www\.)? # Optional www subdomain | |
(?: # Group host alternatives | |
youtu\.be/ # Either youtu.be, | |
| youtube\.com # or youtube.com | |
(?: # Group path alternatives | |
/embed/ # Either /embed/ | |
| /v/ # or /v/ | |
| /watch\?v= # or /watch\?v= | |
) # End path alternatives. | |
) # End host alternatives. | |
([\w-]{10,12}) # Allow 10-12 for 11 char youtube id. | |
$%x' | |
; | |
$result = preg_match($pattern, $url, $matches); | |
if (false !== $result) { | |
return $matches[1]; | |
} | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment