Try it yourself:
echo(html_entity_decode("…"));
It echos … instead of … as it should.
Why won't this decode and how can I make it do so?
|
Try it yourself:
It echos Why won't this decode and how can I make it do so?
| |||||
feedback
|
|
Because the default ISO-8859-1 target character set does not contain the "…" character. You'll have to explicitly target UTF-8:
Note that this changed in PHP 5.3.3 where UTF-8 became the default. | |||||||
feedback
|
|
here is how it actually works EDIT: The browser is the one who will turn | |||||
feedback
|