This question already has an answer here:
- PHP: Replace umlauts with closest 7-bit ASCII equivalent in an UTF-8 string 7 answers
i am looking for a method or maybe a conversion table that knows how to convert Umlauts and special characters to their most likely representation in ascii.
Example:
Ärger = aerger
Bôhme = bohme
Søren = soeren
pjérà = pjera
Anyone any idea?
Update: Apart from the good accepted Answer, i also found PECLs Normalizer to be quite interesting, though i can not use it due to the server not having it and not being changed for me.
Also do check out this Question if the Answers here do not help you enough.