By using preg_replace()
$string = "some სოფო text";
$string = preg_replace('/[^a-z0-9_ ]/i', '', $string);
echo $string;
Granted, you will need to expand the preg_replace pattern, but that is one way to do it. There is probably a better way, I just do not know it.