how to avoid decoding of entities which shouldn't be touched as if used in UTF-8 mode html_entities_decode returns crazy invalid characters i.e. �

so this on will try to convert it and will fail with invalid utf-8 charater html_entity_decode('�',ENT_QUOTES,'UTF-8');

but on the other hand this one html_entity_decode('�') won't convert at all, will just return � rather than � like the first one.

any ideas?

cheers, /Marcin

link|improve this question

ok I have tried utf8_encode(html_entity_decode($string,ENT_QUOTES,'ISO-8859-1')); and it works but not for polish characters so not solution – Marcin Jan 27 at 18:00
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.