Can't get this to work with Cyrillic characters:
if (array_key_exists($list['fname'], $data)) {
}
Array keys are Cyrillic characters
Please help
|
Can't get this to work with Cyrillic characters:
Array keys are Cyrillic characters Please help
| |||||||
feedback
|
|
Are all the cyrillic characters working otherwise? It seems it's probably over-runing the character set -- by default php is ansii, if I remember right. You need UTF-8. In any case, put this at the top of that php file and see if that helps:
| |||
|
feedback
|
|
If Also you can always use a hash for the text as key. | |||
feedback
|