1

我正在使用来自代码点火器的字数限制器。我的数据库为主页吐出一个字符串,并且由于它太长而无法容纳此代码,因此在链接到相应页面的末尾添加了一个“...”。最近我遇到了一个问题,如果我在某个地方有一个逗号,我们会得到一个',......',这对我来说看起来很乱。所以我决定更改代码,以便将字符串限制为一定数量的单词,此时如果字符串在限制后以逗号结尾,那么我们将限制器数量更改为 -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;
        }

    }
4

1 回答 1

1

您可以使用 PHP 的修剪功能

http://php.net/manual/en/function.trim.php

$str1 = 'a,b,c,';
$str = trim($str1, ',');

最终代码:

function word_limiter($str, $limit = 100, $link_end = '', $end_char = '&#8230;')
{
    if (trim($str) == '') {
        return $str;
    }
    preg_match('/^\s*+(?:\S++\s*+){1,' . (int) $limit . '}/', $str, $matches);
    if (strlen($str) == strlen($matches[0])) {
        $end_char = '';
    }
    if (empty($link_end)) { // if link end is empty do not output a link
        return trim(rtrim($matches[0]), ',') . $end_char;
    } else {
        $end = '<a href="'.$link_end.'">'.$end_char.'</a>'; 
        return trim(rtrim($matches[0]), ',') . $end;
    }
}
于 2013-03-04T18:27:05.733 回答