Файл: DARK WARS/dark_war/class/text.class.php
Строк: 41
<?php
abstract class text {
// Выводим текст в браузер
static function lead_text($str) {
$str = htmlentities($str, ENT_NOQUOTES, 'UTF-8');
$str = trim($str);
$str = nl2br($str);
$str = preg_replace('#(^|s|(|])([a-z]+://([^ rnt`'"<]+))(,|[|<|s|$)#iuU', '1<a href="2">2</a>4', $str);
$str = preg_replace('/[url=(.+)](.+)[/url]/isU', '<a href="1">2</a>', $str);
return $str;
}
// Чистое имя для файла
static function pureName($text) {
return trim(preg_replace('#(^.)|[^a-z0-9_-().]+#ui', '_', $text));
}
// для названия в базе
static function for_name($text) {
return trim(preg_replace('#[^pL0-9=?!@#$^*()-_+ ,.:;]+#ui', '', $text));
}
// Обработка максимальной длины текста
static function opis($text) {
$text = self::length($text, 2048);
$text = self::lead_text($text);
return $text;
}
static function length($text, $length, $start = 0, $mb = '...') {
$text = trim($text);
if (function_exists('mb_substr')) {
return mb_substr($text, $start, $length) . (mb_strlen($text) > $length - $start ? $mb : null);
} else {
return substr($text, $start, $length) . (strlen($text) > $length - $start ? $mb : null);
}
}
static function translit($string) {
$table = array(
'А' => 'A',
'Б' => 'B',
'В' => 'V',
'Г' => 'G',
'Д' => 'D',
'Е' => 'E',
'Ё' => 'YO',
'Ж' => 'ZH',
'З' => 'Z',
'И' => 'I',
'Й' => 'J',
'К' => 'K',
'Л' => 'L',
'М' => 'M',
'Н' => 'N',
'О' => 'O',
'П' => 'P',
'Р' => 'R',
'С' => 'S',
'Т' => 'T',
'У' => 'U',
'Ф' => 'F',
'Х' => 'H',
'Ц' => 'C',
'Ч' => 'CH',
'Ш' => 'SH',
'Щ' => 'CSH',
'Ь' => '',
'Ы' => 'Y',
'Ъ' => '',
'Э' => 'E',
'Ю' => 'YU',
'Я' => 'YA',
'а' => 'a',
'б' => 'b',
'в' => 'v',
'г' => 'g',
'д' => 'd',
'е' => 'e',
'ё' => 'yo',
'ж' => 'zh',
'з' => 'z',
'и' => 'i',
'й' => 'j',
'к' => 'k',
'л' => 'l',
'м' => 'm',
'н' => 'n',
'о' => 'o',
'п' => 'p',
'р' => 'r',
'с' => 's',
'т' => 't',
'у' => 'u',
'ф' => 'f',
'х' => 'h',
'ц' => 'c',
'ч' => 'ch',
'ш' => 'sh',
'щ' => 'csh',
'ь' => '',
'ы' => 'y',
'ъ' => '',
'э' => 'e',
'ю' => 'yu',
'я' => 'ya',
);
return str_replace(array_keys($table), array_values($table), $string);
}
}
?>