static function valid_login($login) { $login = Func::translit($login); if (preg_match("([^a-zA-Z0-9])", $login)) { return false; } return true; }