Which method of transliteration is true to convert cyrillic letters to latin letters?

Like writing russian names using english alphabet.

There are many methods of conversion, searching for one that is used on television or other mass media.

Thanks.

link|improve this question

1  
It seems to me that the OP is asking about transliteration, rather than technical conversion. If so, the answer is that there is not one 'true' mapping. Sorry. – Colin Fine Aug 12 '10 at 14:40
@user257493: just need to convert russian names to latin letters. Its not about typing messages, about using them in urls. – Brain Aug 12 '10 at 14:50
1  
@user257493: its called transliteration and there are many maps on it. An example - phpclasses.org/browse/download/zip/package/2641/name/… – Brain Aug 12 '10 at 14:52
@Colin Fine: yes, but which way is usually used for writing russian names on tvchannels like eurosport? There is some method, they can't invent – Brain Aug 12 '10 at 14:54
feedback

4 Answers

up vote 1 down vote accepted

You can take this http://drupal.org/project/transliteration and make it suit your project. This is one of the best implementations of transliteration.

Also you can transliterate using iconv:

echo 'TRANSLIT : ', iconv("UTF-8", "ISO-8859-1//TRANSLIT", $text), PHP_EOL;
link|improve this answer
feedback

Take a look at this


mb_convert_encoding($text, 'UTF-8', $encoding);
link|improve this answer
This can't be used for cyrillic letters. – Brain Aug 12 '10 at 14:39
feedback

Have a look at iconv functions:

You may be interested in:

link|improve this answer
I don't need charset encoding. Its different. – Brain Aug 12 '10 at 14:41
feedback

I assume you are looking for "transliteration", the conversion of text in foreign scripts to latin script, represented to "sound" the same way.

See this question: http://stackoverflow.com/questions/1284535/php-transliteration

link|improve this answer
Call to undefined function iconv_open() – Brain Aug 12 '10 at 14:48
feedback

Your Answer

 
or
required, but never shown

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