My preg_replace pattern regex code here..
/<img(.*?)src="(.*?)"/
This is my replace code..
<img$1src="'.$path.'$2"
So i want to negate/exlude a condition.. If img tag have a rel="customimg", dont preg_replace so skip it..
Example: Skip This Line
<img rel="customimg" src="http..">
What might add to this regex pattern?
I searched another post, but I couldn't exactly..


DOMDocumentor another HTML parser. It may seem to work at first but it will bite you in the ass later. – PeeHaa 埽 Oct 23 '12 at 20:29DOMDocumentto get all<img>and tested if they containedrel="customimg". – Jason McCreary Oct 23 '12 at 20:30