how to convert Russian character to utf-8 in PHP using mb_convert_encoding or any other method?

link|improve this question

47% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Did you try the following? Not sure if it works, though.

mb_convert_encoding($str, 'UTF-8', 'auto');
link|improve this answer
äÁÎÎÙÅ ÂÙÌÉ ÏÂÎÏ×ÌÅÎÙ ?? do you know which encoding is this?? this is a russian translation for "Data has been refreshed. mb_convert_encoding($str, 'UTF-8', 'auto'); not working – coderex Jul 27 '09 at 11:40
Maybe 2cyr.com/decode/?lang=en can help you figure out what encoding it is. Guess it is koi8... – x3ro Jul 27 '09 at 11:49
feedback
$file = 'images/да так 1.jpg';//this is in UTF-8, needs to be system encoding (Russian)
$new_filename = mb_convert_encoding($file, "Windows-1251", "utf-8");//turn utf-8 to system encoding Windows-1251 (Russian)

now your russian files should open your russian characters in php are already utf-8 what you need to do is have the name in the same encoding type as your system encoding

or if you need the opposite...

$new_filename = mb_convert_encoding($file, "utf-8", "Windows-1251");
link|improve this answer
you can read more here yiiframework.com/doc/cookbook/16 – YuriKolovsky Jan 30 '10 at 9:34
feedback

Your Answer

 
or
required, but never shown

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