/    Sign up×
Community /Pin to ProfileBookmark

preg_replace help

Hello everyone i am writing a snippet for replacing the keywords into links.
It almost works but it also replaces the words in between HTML Tags
So can anyone help me in fixing that

[CODE]<?php
$textlinksname = ‘Google’;
$textlinksurl = ‘http://google.com’;
$body = ‘Google is a great search engine. Here is the logo of it <img src =’http://www.google.co.in/google/images/srpr/logo1w.png’/>’;

$replace = “<a href='”.$textlinksurl.”‘ target=’_blank’>”.$textlinksname.”</a>”;
$body = preg_replace(‘~(?<!http://|www.|/)’.$textlinksname.’~i’, $replace,$body,200);

echo $body;
?>[/CODE]

It outputs as

[code]
<a href=’http://google.com’ target=’_blank’>Google</a> is a great search engine. Here is the logo of it
<img src =’http://www.google.co.in/google/intl/en_com/images/srpr/google-123-<a href=’http://google.com’ target=’_blank’>Google</a>.png’/>
[/code]

But i need output like this such that it wont mess with HTML Tags

[code]
<a href=’http://google.com’ target=’_blank’>Google</a> is a great search engine. Here is the logo of it
<img src =’http://www.google.co.in/google/intl/en_com/images/srpr/google-123-Google.png’/>
[/code]

Can anyone help me on how to prevent that???

Thanks in advance ?

to post a comment
PHP

0Be the first to comment 😎

×

Success!

Help @jhbalaji spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.2,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...