Check if text contains cyrillic characters in PHP. This example shows you how to do exactly that.
Source code viewer
$str = 'test string for cyrillic зюя'; if ($contains_cyrillic) { echo 'Contains cyrillic.'; } else { echo 'Does not conain cyrillic.'; }Programming Language: PHP