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?

link|improve this question

um that is not going to work like that – Ibu May 6 '11 at 0:05
@Ibrahim Diallo I'm aware, I wouldn't have posted this otherwise. How can I make it work? – Cyclone May 6 '11 at 0:06
feedback

2 Answers

up vote 6 down vote accepted

Because the default ISO-8859-1 target character set does not contain the "…" character. You'll have to explicitly target UTF-8:

html_entity_decode('…', ENT_QUOTES, 'UTF-8')

Note that this changed in PHP 5.3.3 where UTF-8 became the default.

link|improve this answer
Your code generates: … which, while it looks cool, is not an ellipsis. – Cyclone May 6 '11 at 0:11
@Cyclone Then your document is not being interpreted as UTF-8. Either target the charset that you are serving your document as or fix how your document is served. – deceze May 6 '11 at 0:16
header("Content-Type: text/html; charset=UTF-8"); did the trick for that, by the way. Thank you! – Cyclone May 6 '11 at 2:19
feedback

html_entity_decode("\""); might give you &quote; and not the other way arround

here is how it actually works

EDIT:

The browser is the one who will turn … into ...

link|improve this answer
1  
Uhm, how it actually works is quite the opposite... – deceze May 6 '11 at 0:29
feedback

Your Answer

 
or
required, but never shown

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