What are the differences between htmlspecialchars() and htmlentities(). When should I use one or the other?
|
| |||||
feedback
|
|
From the PHP documentation for htmlentities:
From the PHP documentation for htmlspecialchars:
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. | |||||||||
feedback
|
|
Because:
| |||||
feedback
|
|
For example, if you know that the page encoding match the text special symbols, why would you use For example:
The second one is shorter, and does not cause any problems if ISO-8859-1 charset is set. Last but not least, the | ||||
|
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. | |||
|
feedback
|
|
I just found out about the | ||||
|
feedback
|
|
| |||
|
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.