up vote 31 down vote favorite
11
share [g+] share [fb]

What are the differences between htmlspecialchars and htmlentities. When should I use one or the other?

link|improve this question
See this: stackoverflow.com/questions/3614309/… – Marco Demaio May 3 '11 at 11:50
feedback

3 Answers

up vote 22 down vote accepted

From the PHP documentation for htmlentities:

This function is identical to htmlspecialchars() in all ways, except with htmlentities(), all characters which have HTML character entity equivalents are translated into these entities.

From the PHP documentation for htmlspecialchars:

Certain characters have special significance in HTML, and should be represented by HTML entities if they are to preserve their meanings. This function returns a string with some of these conversions made; the translations made are those most useful for everyday web programming. If you require all HTML character entities to be translated, use htmlentities() instead.

The difference is what gets encoded. The choices are everything (entities) or "special" characters, like ampersand, double and single quotes, less than, and greater than (specialchars).

I prefer to use htmlspecialchars whenever possible.

link|improve this answer
1  
Thanks for the answer, but would you mind to elaborate on what you prefer htmlspecialchars() whenever possible, other than the obvious differences? What situations will using htmlentities() cause you problems whereas htmlspecialchars() will not? – MikeSchinkel Nov 15 '11 at 19:28
feedback

You probably want to use some Unicode character encoding, for example utf-8, and htmlspecialchars. Because there is no need to generate "HTML entities" for "all [the] applicable characters" (that is what htmlentities does according to the documentation) if it's already in your character set.

link|improve this answer
feedback

I just found out about the get_html_translation_table function. You pass it HTML_ENTITIES or HTML_SPECIALCHARS and it returns an array with the characters that will be encoded and how they will be encoded.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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