I'm trying to change the case of russian characters from upper to lower.

 function toLower($string) {   
 echo strtr($string,'ЁЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮ','ёйцукенгшщзхъфывапролджэячсмитьбю');
 };

This is the function I used and the output looks something like this

ЁЙ## ёѹ##`

Can anybody help me with this ? Thanks in advance

link|improve this question

What is the data encoding? – zerkms Apr 25 '11 at 11:33
data encoding is utf-8 anyways got it working. thank you very much – Dhiraj Bodicherla Apr 25 '11 at 12:24
feedback

2 Answers

up vote 2 down vote accepted
$result = mb_strtolower($orig, 'UTF-8');

(assuming the data is in utf-8)

link|improve this answer
feedback

Specify the charset within the HTML and use mb_strtolower() to convert case:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN">
<html>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
    <head>
        <title></title>
    </head>
    <body>
<?
$string = 'ЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮ' ;
echo mb_strtolower($string, 'UTF-8');
?>
    </body>
</html>

With the meta-tag it looks like this:

цукенгшщзхъфывапролджэячсмитьбю

Without the meta-tag it looks like this

цукенгшщзхъфывапролджÑÑчÑмитьбю
link|improve this answer
Using an appropriate Content-Type header is preferred above using meta headers (but also use the latter in case people want to save and view a page locally). – Marcel Korpel Apr 25 '11 at 12:31
feedback

Your Answer

 
or
required, but never shown

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