Пример #1
0
 public static function Comment($text)
 {
     $text = trim($text);
     $text = TextBase::HTMLDestruct($text);
     $text = preg_replace('/(\\R{2})\\R++/Usi', '$1', $text);
     $text = nl2br($text);
     $text = TextBase::CutWordWrap($text);
     $text = TextBase::CutString($text);
     return $text;
 }