Get Youtube VideoID from Embed Code

preg_match('~embed/(.*?)"~', $embed, $output);
$video = $output[1]; 

Comments