What are the differences between htmlspecialchars and htmlentities. When should I use one or the other?
|
1
|
|
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
