Jacek Kowalski
2013-06-29 6e7958d91fcb949ac27e3fc6d1b67833e013f725
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)));
    }
}
?>