我正在使用来自代码点火器的字数限制器。我的数据库为主页吐出一个字符串,并且由于它太长而无法容纳此代码,因此在链接到相应页面的末尾添加了一个“...”。最近我遇到了一个问题,如果我在某个地方有一个逗号,我们会得到一个',......',这对我来说看起来很乱。所以我决定更改代码,以便将字符串限制为一定数量的单词,此时如果字符串在限制后以逗号结尾,那么我们将限制器数量更改为 -1。不幸的是,代码不起作用,我看不出哪里出错了。
// limits a string to X number of words.
function word_limiter($str, $limit = 100, $link_end = '', $end_char = '…')
{
if (trim($str) == '') {
return $str;
}
// modified
$cfc = preg_match('/^\s*+(?:\S++\s*+){1,' . (int) $limit . '}/', $str, $matches);
if (substr($cfc, -1) == ',') {
$limit_minus = $limit-1;
preg_match('/^\s*+(?:\S++\s*+){1,' . (int) $limit_minus . '}/', $str, $matches);
}
if (strlen($str) == strlen($matches[0])) {
$end_char = '';
}
if (empty($link_end)) {
return rtrim($matches[0]) . $end_char;
} else {
$end = '<a href="'.$link_end.'">'.$end_char.'</a>';
return rtrim($matches[0]) . $end;
}
}