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.

trying to use this function

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

against this:

[link-code-html] => <a href="http://www.kqzyfj.com/click-3782261-10563989">invisibleSHIELD for the iPhone 3G</a><img src="http://www.ftjcfx.com/image-3782261-10563989" width="1" height="1" border="0"/>

while

echo(strip_tags($each->{'link-code-html'}),'<a>'));

returns me:

invisibleSHIELD for the iPhone 3G

it doesn't seems like I have img (1x1) next to it, but it's missing link

any ideas what am I doing wrong?

share|improve this question
I don't understand if you get the string without a and img tags or just on of them. – Aurelio De Rosa Oct 30 '11 at 1:41
1  
This is the output from your code: <a href="http://www.kqzyfj.com/click-3782261-10563989">invisibleSHIELD for the iPhone 3G</a>...the link seems to be there – Clive Oct 30 '11 at 1:43
sorry I dont get a or img, just plain text string – alexus Oct 30 '11 at 2:19

1 Answer

up vote 4 down vote accepted

The <a> is not within the call of strip_tags(), it should be:

echo(strip_tags($each->{'link-code-html'}, '<a>'));
                                                ^
share|improve this answer
you were 100% right :) thanks so much! – alexus Oct 30 '11 at 14:43

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.