How to get the youtube ID from a youtube URL

Use this function ;)

function get_youtube_id_from_url($url)
{   
     preg_match('/youtube\.com\/v\/([\w\-]+)/', $url, $match);
     return $match[1];    
}

Leave a comment