Подписка на нашу рассылку
Задайте вопрос специалисту
На заметку
Здоровье и красота
function maxsite_str_word($text, $counttext = 5, $sep = ' ') {
$words = split($sep, $text);
if ( count($words) > $counttext ) {
$text = join($sep, array_slice($words, 0, $counttext));
return $text.'...';
} else {
return $text;
}
}
?>