Forum Moderators: coopster
...is supposed to turn all entities into their characters, but for some reason it's not changing ’ into a right single quotation mark.
Has anyone come across this?
Have a look:
<pre> <?php $orig = "I'll change these I'll!"; $a = htmlentities($orig, ENT_QUOTES); echo "$a\n"; $b = html_entity_decode($a, ENT_QUOTES); echo $b; ?> <pre>