Files
cm-web/application/helpers/hoosk_admin_helper.php
2020-06-10 06:21:34 +09:00

15 lines
380 B
PHP
Executable File

<?php
if(!function_exists('wordlimit')) {
function wordlimit($string, $length = 40, $ellipsis = "...")
{
$string = strip_tags($string, '<div>');
$string = strip_tags($string, '<p>');
$words = explode(' ', $string);
if (count($words) > $length)
return implode(' ', array_slice($words, 0, $length)) . $ellipsis;
else
return $string.$ellipsis;
}
}