I want ask what could be the mistake i am doing in this code.
I am currently trying to find the first occurrence of an image tag or an object tag then return a piece of html if it matches one.
Currently, I can get the image tag, but unfortunately I can’t seem to have any results on object tag.
I am thought, I am doing some mistake in my regex pattern or something. Hope requirement is clear enough for you to understand thanks.
My code here:
function get_first_image(){
global $post, $posts;
$first_img = '';
ob_start();
ob_end_clean();
$output = preg_match_all('/<img.+src=['"]([^'"]+)['"].*>/i', $post->post_content, $matches) || preg_match_all('/<object[0-9 a-z_?*=":-/.#,<>\n\r\t]+</object>/smi', $post->post_content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){ //Defines a default image
$mediaSearch = preg_match_all('/<object[0-9 a-z_?*=":-/.#,<>\n\r\t]+</object>/smi', $post->post_content, $matches2);
$first_media = $matches2 [1] [0];
$first_img = "/images/default.jpg";
}
if(!empty($first_img)){
$result = "<div class="alignleft"><img src="$first_img" style="max-width: 200px;" /></div>";
}
if(!empty($first_media)){
$result = "<p>" . $first_media . "</p>";
}
return $result;
}
While regular expressions can be good for a large variety of tasks, I find it usually falls short when parsing HTML DOM. The problem with HTML is that the structure of your document is so variable that it is hard to accurately (and by accurately I mean 100% success rate with no false positive) extract a tag.
What I recommend you do is use a DOM parser such as
SimpleHTML
and use it as such:Some may think this is overkill, but in the end, it will be easier to maintain and also allows for more extensibility. For example, using the DOM parser, I can add to the styles of your current image.
A regular expression could be devised to achieve the same goal but would be limited in such way that it would force the
style
attribute to be after thesrc
or the opposite, and to overcome this limitation would add more complexity to the regular expression.Also, consider the following. To properly match an
<img>
tag using regular expressions and to get only thesrc
attribute (captured in group 2), you need the following regular expression:And then again, the above can fail if:
i
modifier is not used.src
attribute.src
uses the>
character somewhere in their value.So again, simply don’t use regular expressions to parse a dom document.
Try this: (You need to define what you want to get in the matches array)