0

这是我的代码,我正在做的是从数据库中提取文本,在表格中显示并且数据超过的地方可以说 450 个字符,我把它放在最后

....[查看更多]

现在代码工作正常,但有一个例外,数据库中的信息包含 html,如段落和项目符号列表。这造成了一个问题,设置限制的整个想法是这样它不会将行向下延伸到超出我想要的范围,项目符号列表或段落的换行符似乎被计为 0 或 1 个字符,但它需要占用了很多字符的空间,所以我该如何操作这段代码以便考虑换行符。

我的想法是用这样的东西来计算之间的空格:

$white_space = substr_count($text, ' ');

返回总空白

我也试过这个

$white_space_str = substr_count($newstr, ' ');

但这会返回 0,所以我做错了什么。但无论如何,我在这一点上有点卡住了,希望有人可以帮助新手,如果代码被简化而不是修剪和整洁,它可能会帮助我更好地理解它:)

但我不确定如何将其放入工作代码中。

function trim_description($str, $maxlen) {
if ( strlen($str) <= $maxlen ) return $str;

$newstr = substr($str, 0, $maxlen);
if ( substr($newstr,-1,1) != ' ' ) $newstr = substr($newstr, 0, strrpos($newstr, " "));

return $newstr;
}
4

1 回答 1

0

也许这可以帮助你。我发现这是这个问题的答案

function truncate($text, $length, $suffix = '&hellip;', $isHTML = true) { 
    $i = 0; 
    $simpleTags=array('br'=>true,'hr'=>true,'input'=>true,'image'=>true,'link'=>true,'meta'=>true); 
    $tags = array(); 
    if($isHTML){ 
        preg_match_all('/<[^>]+>([^<]*)/', $text, $m, PREG_OFFSET_CAPTURE | PREG_SET_ORDER); 
        foreach($m as $o){ 
            if($o[0][1] - $i >= $length) 
                break; 
            $t = substr(strtok($o[0][0], " \t\n\r\0\x0B>"), 1); 
            // test if the tag is unpaired, then we mustn't save them 
            if($t[0] != '/' && (!isset($simpleTags[$t]))) 
                $tags[] = $t; 
            elseif(end($tags) == substr($t, 1)) 
                array_pop($tags); 
            $i += $o[1][1] - $o[0][1]; 
        } 
    } 

    // output without closing tags 
    $output = substr($text, 0, $length = min(strlen($text),  $length + $i)); 
    // closing tags 
    $output2 = (count($tags = array_reverse($tags)) ? '</' . implode('></', $tags) . '>' : ''); 

    // Find last space or HTML tag (solving problem with last space in HTML tag eg. <span class="new">) 
    $pos = (int)end(end(preg_split('/<.*>| /', $output, -1, PREG_SPLIT_OFFSET_CAPTURE))); 
    // Append closing tags to output 
    $output.=$output2; 

    // Get everything until last space 
    $one = substr($output, 0, $pos); 
    // Get the rest 
    $two = substr($output, $pos, (strlen($output) - $pos)); 
    // Extract all tags from the last bit 
    preg_match_all('/<(.*?)>/s', $two, $tags); 
    // Add suffix if needed 
    if (strlen($text) > $length) { $one .= $suffix; } 
    // Re-attach tags 
    $output = $one . implode($tags[0]); 

    //added to remove  unnecessary closure 
    $output = str_replace('</!-->','',$output);  

    return $output; 
} 
于 2012-08-06T06:45:34.633 回答