@ignore
public static function isLanguageChar($c) { $o = ord($c); return $o >= 0x41 && $o <= 0x5a || $o >= 0x61 && $o <= 0x7a || $o >= 0x30 && $o <= 0x39 || $c == '-'; }