We've got some fraction information stored in the database, e.g. ¾ ½
Short of doing a search and replace, are there any inbuilt PHP functions that will automatically convert these to proper html entities?
|
1
|
We've got some fraction information stored in the database, e.g. ¾ ½ Short of doing a search and replace, are there any inbuilt PHP functions that will automatically convert these to proper html entities?
|
||
|
|
|
|
You can use the htmlentities() function. This will replace all special characters with their HTML equivalent. It should do the job your require. Good question btw, +1. |
||
|
|
|
|
The answer is already given: use
As you can imagine, it sucks having to add the second and third argument all the time. For most projects I need
|
||
|
|
|
|
But you probably don't need to. Serve your page in an encoding that includes them (UTF-8, ISO-8859-1) and you can include those as literal, unescaped characters. |
||||||||
|
|
|
try htmlentities() |
||
|
|