Wykrywanie rosyjskich postaci w formie PHP
function isRussian($text) {
return preg_match('/[А-Яа-яЁё]/u', $text);
}
Shadow
function isRussian($text) {
return preg_match('/[А-Яа-яЁё]/u', $text);
}