I want to get all only youtube video ID from html code
look the (or multiple) object/embed code for youtube video
// html from database
&
If you want to get embed link for youtube video, you can use the following code snippet:
$youtubeRegexp = "#(/v/|/watch\?v=)([A-Za-z0-9_-]{5,11})#";
$embedUrl = preg_replace($youtubeRegexp, '/embed/$2', $videoUrl);
For the current moment embed code is:
Note: $videoUrl should be set to the original url prior to running this expression.