iwant to get the video url from a object/embed html source. i read i can use regular expression to get it but me and regular expression are no friends

so heres what i have:

<?php 

function src($text) {
    $text = str_replace('"', '', $text);
    $text = str_replace('src=', '', $text);
    $temporary = explode('<embed', $text);
    $temporary = $temporary[1];
    $temporary = explode(' ', trim($temporary));
    return $temporary[0];
} 

$html = '
<object width="180" height="220">
    <param name="movie" value="http://www.domain.com/video/video1.swf"></param>
    <embed src="http://www.domain.com/video/video1.swf" type="application/x-shockwave-flash" width="180" height="220"></embed>
</object>
'; 

echo src($html);

this works but is it better in regular expression?

i am using lamp

link|improve this question

feedback

2 Answers

up vote 13 down vote accepted

A regular expression is better for this case because the src might never be at the first attribute, therefore this won't work.

Here's what I recommend:

function src($html) {
 if(preg_match('#<embed[^>]*?src=["\'](.*?)["\'](.*?)></embed>#si', stripslashes($html), $src)) {
  return $src[1];
 }
 return ''; // or any other error if you need
}

echo src($html);

will output: http://www.domain.com/video/video1.swf

[^>] matches a single character that is not contained within the brackets. [^>] matches any character other than >

["\'] matches src=" or src='

(.*?) Dot (.) means match any character. Star (*) means zero or more times. And question mark (?) means be greedy and keep going as long as the pattern still matches. Put it all together, it means try and match any character, zero or more times, and get as many as you can

/i is case insensitive

Here's more info:

http://en.wikipedia.org/wiki/Regular_expression

http://www.regular-expressions.info/reference.html

link|improve this answer
1  
thanks for the explanation and the links – E.G. Nov 28 '11 at 3:13
you are very welcome – Book Of Zeus Nov 28 '11 at 3:14
1  
any reason why -1? – Book Of Zeus Nov 28 '11 at 3:21
Regarding the ["|\'] subexpression... The | char is NOT a metacharacter within a character class (you cannot do alternation within a char class). What you want here is simply ["']. – ridgerunner Nov 28 '11 at 3:39
The ? means NOT greedy, not be greedy. – Consciousness Nov 28 '11 at 5:49
feedback

Why don't you use a DOM parser; it's designed to do this kind of work.

$dom = new DOMDocument;

$dom->loadHTML($html);

$embed = $dom->getElementsByTagName('embed');

if ($embed->length) {
   $embed = $embed->item(0);

   if ($embed->hasAttribute('src')) {
       $src = $embed->getAttribute('src');
       // `$src` holds the `src` attribute of the `embed` element.  
   }
}

CodePad.

link|improve this answer
8  
i get: Warning: DOMDocument::loadHTML() [function.DOMDocument-loadHTML]: Unexpected end tag : param in Entity, line: 17 in test.php on line24 – E.G. Nov 28 '11 at 3:13
@E.G.: That's a warning because your HTML is invalid. It still works. – alex Nov 28 '11 at 3:17
good solution, i prefer DOMDocument too – eric Nov 28 '11 at 3:26
1  
new DOMDocument is slooooooooowwwwwwwww........... – Derek Dec 6 '11 at 12:02
I get the same error – EscoMaji Mar 7 at 13:37
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.