I'm trying to do a preg_match_all on the following string:
$string1 = '/<a href="(.*?).(jpg|jpeg|png|gif|bmp|ico)"><img(.*?)class="(.*?)wp-image-(.*?)" title="(.*?)" (.*?) \/><\/a>/i';
preg_match_all( $string, $content, $matches, PREG_SET_ORDER);
The above works fine for what i'm doing, the problem is I also need to detect images without the "title" tag.
Is there a way to do a preg_match_all and also add matches if the string doesn't have value[6]? (title flag is value[6]), and give those results (without title) a special name (i.e $matches_no_title?
My current solution is to run two preg_match_all on two different strings (same string except one doesn't have the title="" part), but if I could do it all in one preg_match_all to optimize the website speed, that would be better!