Russische Charaktere in einer Form in PHP erkennen

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