Are there any solutions that will convert all foreign characters to A-z equivalents? I have searched extensively on Google and could not find a solution or even a list of characters and equivalents. The reason is I want to display A-z only URLs, plus plenty of other trip ups when dealing with these characters.
|
feedback
|
|
You can use iconv, which has a special transliteration encoding.
-- http://www.gnu.org/software/libiconv/documentation/libiconv/iconv_open.3.html See here for a complete example that matches your use case. | |||||||||
feedback
|
|
If you are using iconv then make sure your locale is set correctly before you try the transliteration, otherwise some characters will not be correctly transliterated
| |||
|
feedback
|
|
The problem with your query is that it is a very hard thing to do. Not all glyphs in most languages have a-z equivalents, all glyphs have phonetic equivalents (but these are words not letters), if you are just dealing with Latin based languages then things are a little easier but you still have issues with things like I-mutation. Your best solution word be to come up with a crude list of phonetic sounds -> a-z equivalents, it won't be perfect but without any more information on you exact requirements it is hard to develop a solution. | |||
feedback
|
|
Note: I'm reposting this from another similar question in the hope that it's helpful to others. I ended up writing a PHP library based on URLify.js from the Django project, since I found iconv() to be too incomplete. You can find it here: https://github.com/jbroadway/urlify Handles Latin characters as well as Greek, Turkish, Russian, Ukrainian, Czech, Polish, and Latvian. | |||
|
feedback
|
TransliteratorClass (intl extension) – hakre Apr 17 at 12:10