Просмотр поста

.
NURD
//...class text {...
    public static function in ($string,$cut = false) {
        if ($cut)
            return htmlspecialchars( substr( trim($string), 0, (int) ($cut-1)));
        else
            return htmlspecialchars(trim($string));
    }
//...}