zimick Posted August 8, 2007 Share Posted August 8, 2007 I know there is a way to do this with Regex, but I cannot seem to get it to extract the correct data. I want to extract the YouTube video ID from a YouTube embed code. i.e. YouTube embed code: <object width="425" height="350"><param name="movie" value=" name="wmode" value="transparent"></param><embed src=" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object> I need to extract "CQzUsTFqtW0" to a variable. Any help would be appreciated - or even a point in the right direction. Quote Link to comment Share on other sites More sharing options...
utexas_pjm Posted August 9, 2007 Share Posted August 9, 2007 Here's one possible solution sans regex: <?php $string = '<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/CQzUsTFqtW0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/CQzUsTFqtW0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>'; $doc = new DOMDocument(); $doc->loadXml($string); $params = $doc->getElementsByTagName( "param" ); foreach( $params as $param ) { if($param->getAttribute("name") == "movie"){ echo basename($param->getAttribute("value")); } } ?> Best, Patrick Quote Link to comment Share on other sites More sharing options...
zimick Posted August 9, 2007 Author Share Posted August 9, 2007 Thanks Patrick... However, I am limited to PHP 4.3.9 at the moment Quote Link to comment Share on other sites More sharing options...
effigy Posted August 9, 2007 Share Posted August 9, 2007 <pre> <?php $string = '<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/CQzUsTFqtW0"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/CQzUsTFqtW0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object>'; preg_match('#(?<=youtube\.com/v/)\w+#', $string, $matches); print_r($matches); ?> </pre> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.