Jacek Kowalski
2012-06-25 79d1cc1cc5c78b63daaf7bfb1446541dd878a1d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
class BotLegacyEnd extends Exception {}
 
class funcs {
    static function end() {
        throw new BotLegacyEnd();
    }
    
    static function utfToAscii($utf) {
        $utf = trim(str_replace('  ', ' ', $utf));
        return strtolower(iconv('utf-8', 'ascii//TRANSLIT', trim($utf)));
    }
}
?>