2

这是我在模板中用于单词修剪的功能

<?php


/**
* Trim a string to a given number of words
*
* @param $string
*   the original string
* @param $count
*   the word count
* @param $ellipsis
*   TRUE to add "..."
*   or use a string to define other character
* @param $node
*   provide the node and we'll set the $node->
*
* @return
*   trimmed string with ellipsis added if it was truncated
*/

   function word_trim($string, $count, $ellipsis = FALSE){
$words = explode(' ', $string);
if (count($words) > $count){
    array_splice($words, $count);
    $string = implode(' ', $words);

    if (is_string($ellipsis)){
        $string .= $ellipsis;
    }
    elseif ($ellipsis){
        $string .= '&hellip;';
    }
}
return $string;
}

?>

在页面本身中它看起来像这样

<?php echo word_trim(get_the_excerpt(), 12, ''); ?>

我想知道,有没有办法可以修改该函数来修剪字符数而不是单词数?因为有时当有更长的单词时,它会全部偏移并且不对齐。

谢谢

4

1 回答 1

1

看一下函数的逻辑:它用空格分割字符串,对结果数组进行计数和切片,然后将它们重新组合在一起。
现在空格是单词的分隔符......我们需要在什么字符上拆分字符串以获取所有字符而不是单词?对,什么都没有(最好说:一个空字符串)!

所以你改变了这两行

function word_trim($string, $count, $ellipsis = FALSE){
  $words = explode(' ', $string);
  if (count($words) > $count){
    //...
    $string = implode(' ', $words);
  }
  //...
}

$words = str_split($string);
//...
$string = implode('', $words);

你应该没事。
请注意,我将第一个explode-call 更改为str_split,因为explode不接受空分隔符(根据手册)。

我会将函数重命名为character_trim或其他名称,也可能是$word变量,因此您的代码对读者来说是有意义的。

于 2014-01-13T12:46:54.653 回答