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