Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using:

$this->tresc[$i][description]=preg_replace("/\<a .*\>.*\<\/a\>/i", "", $this->tresc[$i][description]);

to remove links.

Sometimes the links are having images inside I would like to keep:

<a href="http://www.domain.com/page.php"><img src="http://domain.com/image.jpg" alt="​Image" align="left" /></a>

Is this possible ? Now everything beetween <a> and </a> is removed.

share|improve this question
3  
I'm parsing RSS feed. – Spacedust Jul 8 '12 at 14:09
3  
Guess what's in it. – minitech Jul 8 '12 at 14:10
2  
strip_tags($content,'<img>'); – l̕aͨŵƦȆ̴̟̟͙̞ͩ͌͝ƞCͭ̏ȇ ƇhƐȓ0nè Jul 8 '12 at 14:11
Where should I put this ? – Spacedust Jul 8 '12 at 14:13
show 1 more comment

2 Answers

PHP's strip_tags() function allows you to specify what HTML entities you want to leave untouched.

http://php.net/manual/en/function.strip-tags.php

You can use the optional second parameter to specify tags which should not be stripped.

strip_tags($rssContent, '<img>');

That should remove/sanitize all HTML elements leaving the <img> tags alone.


The comment section of that page in the PHP documentation also contains loads of helpful functions that might be useful to you. I recommend reading through them.
This one specifically looks interesting.

share|improve this answer
I will check it out. – Spacedust Jul 8 '12 at 14:13
up vote 0 down vote accepted

I did this:

$this->tresc[$i][description]=preg_replace("/<a href=\"(.*)\">/i", "",$this->tresc[$i][description]);
$this->tresc[$i][description]=preg_replace("/<\/a\>/i", "",$this->tresc[$i][description]);

But this is leaving text that's on the link.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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