Вход Регистрация
Файл: core/functions/cut_text.php
Строк: 9
<?
function cut_text$text$maxwords 15$maxchar 100 ){
    
$sep=' ';

    
$sep2=' ....';

    
$words explode($sep,$text);

    
$char iconv_strlen($text,'utf-8');

    if (
count($words) > $maxwords){        $text join($separray_slice($words0$maxwords));
    }

    if ( 
$char $maxchar ){
        
$text iconv_substr$text0$maxchar'utf-8' );

    }

    return 
$text.$sep2;
}
?>
Онлайн: 1
Реклама