Let assume that $reply = "blah blah blah >< blah blah blah"; (>< is popular emoticon in korea)

but, when i use "strip_tags" to strip every html and php tags in $reply, every characters after "<" is removed.

i think strip_tags mixed up.

is there any solution to solve this problem?

link|improve this question
1  
no, unless you discard use of strip_tags – ajreal Dec 16 '11 at 2:21
oh i see.. then i should use str_replacce instead of strip_tags. thanks! – Mintak Son Dec 16 '11 at 2:25
@MintakSon: Most probably, you should use htmlspecialchars. – Jon Dec 16 '11 at 2:27
feedback

2 Answers

up vote 1 down vote accepted

You're treating the string as HTML if you are calling strip_tags() on it. Therefore, those entities should be encoded as &lt; and &gt; before you use strip_tags() on it, otherwise they are to be treated as the start and end of HTML tags.

You will need to encode those entities. Using strip_tags() should then be safe.

link|improve this answer
+1, but what would be left for strip_tags to do after it's been processed with htmlspecialchars? – Jon Dec 16 '11 at 2:26
@Jon Geez, I feel stupid now ;) – alex Dec 16 '11 at 2:27
oh! that's very good function! thank you for your advise. have a nice day, alex :) – Mintak Son Dec 16 '11 at 2:29
i think using reg_expr -> htmlspecialchars -> strip_tags is the best way to solve the problem – Mintak Son Dec 16 '11 at 2:31
When did regex's come into play ;). And Jon had a good point here that using both strip_tags and htmlspecialchars() would be redundant. Overkill, but it would work. – landons Dec 16 '11 at 2:41
feedback

Interesting. I would personally entity-encode the parts that are acceptable, then run strip tags or htmlentities() after that...

<?php
// Initial user-input
$reply = "blah blah blah >< blah blah blah";

// Allow the emoticon you mentioned
$reply = str_replace('><', '&gt;&lt;', $reply);

// Then strip tags
$reply = strip_tags($reply);

Of course, this is all moot if you just htmlentites($reply), and let the user put in brackets if they want...

link|improve this answer
4  
s/htmlentities/htmlspecialchars/ - in the days of UTF8 there's no good reason to encode things like umlauts as html entities. – ThiefMaster Dec 16 '11 at 2:26
Good point. I always use htmlentities($string, ENT_COMPAT, 'UTF-8'), but mostly because that's what I saw other people do for i18n. Is it better just to use htmlspecialchars()? – landons Dec 16 '11 at 2:28
@landons: If your whole stack can handle UTF-8 (and as ThiefMaster says, this is almost 2012) then htmlentities is just more bloat. Plus, it makes the HTML unreadable. – Jon Dec 16 '11 at 2:29
@landons: htmlspecialchars() only encodes the characters which really need to be to prevent them having special meaning. – alex Dec 16 '11 at 2:30
@landons What about some HTML such as <strong><em>Whoops!</em></strong>? – alex Dec 16 '11 at 2:30
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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