Tagged Questions

6
votes
3answers
469 views

How can I match a Russian word using preg_replace in PHP?

How do I go about matching a Russian word in a string (also in Russian) in PHP? So for example something like this: $pattern = '/слово/'; preg_replace($pattern, $replacement, $string_in_russian) I ...
2
votes
7answers
802 views

PHP: case-insensitive preg_replace of a cyrillic string in UTF8

I have a PHP 5.3 script displaying users of my web site and would like to replace a certain Russian city (stored in UTF8 in PostgreSQL 8.4.7 database + CentOS 5.5/64 bits Linux) by its older name (it ...
1
vote
3answers
503 views

world countres list with cities

is there any solution to show user all countries and after select country it reselect all cities of its country? be best with script selecting p.s. russian name of countries
1
vote
3answers
1k views

PHP and Russian Letters

What is happening with Russian letters when sending via PHP request to ... a mail, by e.g.? the "hardcoded" russians letters are displayed properly, but from the Form's textboxex with hieroglyphs: ...
1
vote
4answers
527 views

php, search in chinese and russian

Eventually, I'm creating a website on three languages: english, russian and chinese. I hope that if I use UTF-8 in application and database, there won't be any problems with input-output (will there?) ...
1
vote
2answers
2k views

mb_convert_encoding for russian in php

how to convert Russian character to utf-8 in PHP using mb_convert_encoding or any other method?
0
votes
2answers
43 views

phpmyadmin+php in russian

In phpmyadmin I have stored a few russian values, using utf8_unicode_ci encoding. They are shown perfectly in phpmyadmin. The problem appears when I get those values with php and I try to put them ...
0
votes
0answers
109 views

Displaying Russian characters in Cakephp 1.3.10

Using CakePHP 1.3.10 I have a legacy MYSQL database with latin1 encoding. I do not have the option of changing the database or table encoding since it will break other things. I created and loaded ...
0
votes
2answers
270 views

Converting russian characters from upper case to lower case in php

I'm trying to change the case of russian characters from upper to lower. function toLower($string) { echo strtr($string,'ЁЙЦУКЕНГШЩЗХЪФЫВАПРОЛДЖЭЯЧСМИТЬБЮ','ёйцукенгшщзхъфывапролджэячсмитьбю'); ...
0
votes
1answer
140 views

basic string comparison for russian character in php

How can a basic string comparison be performed on russian (cyrillic) characters ? thanks in advance
0
votes
1answer
251 views

russian characters not accepted in php / phpmyadmin?

I have a website in 3 languages: english, dutch and russian. There's a little CMS where the user can update the text on the website. everything works good, except for the russian text.. If I enter ...
-1
votes
2answers
44 views

array_key_exists Cyryllic characters

Can't get this to work with Cyrillic characters: if (array_key_exists($list['fname'], $data)) { } Array keys are Cyrillic characters Please help