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

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

6 Answers

up vote 28 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
4  
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
Just ran into a problem due to using htmlentities rather than htmlspecialchars! If your site is UTF8 encoded, special symbols like ¡™£¢∞§¶ get turned into little black diamonds with question marks in them because htmlentities doesn't know how to handle them, but htmlspecialchars does. – Darius 13 hours ago
@Darius What you're saying doesn't make any sense. htmlentities and htmlspecialchars can both handle UTF-8 as long as you specify "UTF-8" for the third argument. – Artefacto 8 hours ago
feedback

Because:

  • Sometimes you're writing XML data, and you can't use HTML entities in a XML file.
  • Because htmlentities substitutes more characters than htmlspecialchars. This is unnecessary, makes the PHP script less efficient and the resulting HTML code less readable.

htmlentities is only necessary if your pages use encodings such as ASCII or LATIN-1 instead of UTF-8.

link|improve this answer
1  
thanx. this is objective and useful info (: – hugo_leonardo Sep 1 '10 at 1:10
feedback

htmlspecialchars may be used when there is no need to encode all characters which have their HTML equivalents.

For example, if you know that the page encoding match the text special symbols, why would you use htmlentities? htmlspecialchars is much straightforward, and produce less code to send to the client.

For example:

echo htmlentities('<Il était une fois un être>.');
// Outputs: &lt;Il &eacute;tait une fois un &ecirc;tre&gt;.

echo htmlspecialchars('<Il était une fois un être>.');
// Outputs: &lt;Il était une fois un être&gt;.

The second one is shorter, and does not cause any problems if ISO-8859-1 charset is set.

Last but not least, the htmlspecialchars can be used when the data will be processed not only through a browser (to avoid decoding HTML entities), or, like said in an other answer, if the output is XML.

link|improve this answer
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

htmlspecialchars () does the minimum amount of encoding to ensure that your string is not parsed as HTML. This leaves your string more human-readable than it would be if you used htmlentities () to encode absolutely everything that has an encoding.

link|improve this answer
feedback

protected by BoltClock Mar 3 at 20:50

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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