Answers for "php text Cyrillic check"

PHP
3

php text Cyrillic check

function isRussian($text) {
    return preg_match('/[А-Яа-яЁё]/u', $text);
}
Posted by: Guest on January-07-2022

Code answers related to "php text Cyrillic check"

Browse Popular Code Answers by Language