How do I strip the HTML tags from a variable and leave the link? I am trying to send emails with the link but without the tags. I've tried strip_tags(), but it removes the link.

$var = "this is a link <a href="mylink"/>yes it is</a>;

$message ="$var"; // email massage

How would I go about making it into "this is a link mylink yes it is"?

link|improve this question
feedback

3 Answers

up vote 1 down vote accepted

this could help you

$message = strip_tags(preg_replace('/<a href="(.*)">/', '$1', $var));
link|improve this answer
Thanks for your help, Flask. But this is still stripping away the link. I tried to modify it but no luck. Have any idea why shit could be happening? – Holidaymaine Apr 27 '11 at 18:39
WOW I meant "This" not "Sh**" say it too late to edit it. – Holidaymaine Apr 27 '11 at 18:46
hey holidaymaine. maybe because your link is not valid? its self closing.. <a href="mylink"/> guess the / at the end is missplaced? – Flask Apr 27 '11 at 18:49
You were right Flask. The link was not valid. Thank you this worked great. – Holidaymaine Apr 27 '11 at 22:23
feedback

You can use regular expression to remove just tags, but not the link itself, if strip_tags does not work.

link|improve this answer
feedback
$regex  = '/<\/?[a-zA-Z0-9=\s\"\._]+>/';
preg_replace($regex,'',$mystring);

this will remove tags but leave it's contents. I'm not sure I've included all the necessary chars. you can add them later =)

link|improve this answer
Thank you, Headshota. Your code is not stripping away anything. I tried a combination of your answer and Flask's answer, but no luck. – Holidaymaine Apr 27 '11 at 18:43
I've edited my regex try it out. if it helps =) – Headshota Apr 27 '11 at 19:22
Your code is still not stripping anything even after I validated the link as Flask suggested. – Holidaymaine Apr 27 '11 at 22:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.