Jump to content

preg_replace that ignores content inside a, img and other specified tags


adrianbj

Recommended Posts

I am creating automated mouseover tooltips for definitions of words in a glossary database. The problem is that I can't figure out how to not replace the word when it appears in hyperlinks, img and various heading tags.

 

I have populated an array with all the words and their definitions - $glossary

 

What I have at the moment is a simple str_replace, because I actually have no idea how to start this preg_replace.

 

	foreach($glossary as $glossary_word => $glossary_definition){
	$content = str_replace($glossary_word,'<a href="javascript:;" style="cursor:help;color:#BF601A;" onmouseover="Tip(\''.$glossary_definition.'\')" onmouseout="UnTip()">'.$glossary_word.'</a>',$content);
}

 

Would be great if I could populate an array of tags that would be ignored when doing the replace ie:

$tags_to_ignore = array('a','img','h1','h2','h3',etc) and somehow include this in the preg_replace.

 

What this would mean is that the function would only add the tooltip to occurrences of the word not in these specified tags.

 

 

Thanks for any thoughts on this.

Link to comment
Share on other sites

  • 2 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.