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.

link|improve this question

As pointed out a crude list of conversions for latin based alphabets would suffice. – esryl Aug 16 '09 at 15:55
2  
There is now a Transliteration Class added to recent version of PHP (PHP 5.4) – casey_miller Mar 4 at 4:53
feedback

4 Answers

up vote 12 down vote accepted

You can use iconv, which has a special transliteration encoding.

When the string "//TRANSLIT" is appended to tocode, transliteration is activated. This means that when a character cannot be represented in the target character set, it can be approximated through one or several characters that look similar to the original character.

-- http://www.gnu.org/software/libiconv/documentation/libiconv/iconv_open.3.html

See here for a complete example that matches your use case.

link|improve this answer
1  
i had just stumbled across iconv as my research continued, thank you very much for linking me to the complete example. thanks. – esryl Aug 16 '09 at 16:15
1  
You should incorporate Shane O'Grady's answer – Quamis Oct 26 '11 at 11:41
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

setlocale(LC_CTYPE, 'en_US.UTF8');
link|improve this answer
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.

link|improve this answer
I am mosting dealing with European languages, a rough solution would be fine, I once found a big list in the source of another script, but have completely lost it. – esryl Aug 16 '09 at 15:36
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.