Forked from ckchaudhary/get-youtube-video-id-from-url
Created
August 30, 2018 17:00
-
-
Save TanvirAmi/cf239b43ba3eee7de82c60d7af3e0ce3 to your computer and use it in GitHub Desktop.
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 | |
/** | |
* http://webdeveloperswall.com/php/get-youtube-video-id-from-url | |
**/ | |
function extractUTubeVidId($url){ | |
/* | |
* type1: http://www.youtube.com/watch?v=9Jr6OtgiOIw | |
* type2: http://www.youtube.com/watch?v=9Jr6OtgiOIw&feature=related | |
* type3: http://youtu.be/9Jr6OtgiOIw | |
*/ | |
$vid_id = ""; | |
$flag = false; | |
if(isset($url) && !empty($url)){ | |
/*case1 and 2*/ | |
$parts = explode("?", $url); | |
if(isset($parts) && !empty($parts) && is_array($parts) && count($parts)>1){ | |
$params = explode("&", $parts[1]); | |
if(isset($params) && !empty($params) && is_array($params)){ | |
foreach($params as $param){ | |
$kv = explode("=", $param); | |
if(isset($kv) && !empty($kv) && is_array($kv) && count($kv)>1){ | |
if($kv[0]=='v'){ | |
$vid_id = $kv[1]; | |
$flag = true; | |
break; | |
} | |
} | |
} | |
} | |
} | |
/*case 3*/ | |
if(!$flag){ | |
$needle = "youtu.be/"; | |
$pos = null; | |
$pos = strpos($url, $needle); | |
if ($pos !== false) { | |
$start = $pos + strlen($needle); | |
$vid_id = substr($url, $start, 11); | |
$flag = true; | |
} | |
} | |
} | |
return $vid_id; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment