4

我正在使用下面的 getExcerpt() 函数来动态设置文本片段的长度。但是,我的 substr 方法目前是基于字符数的。我想将其转换为字数。我需要分离函数还是可以使用 PHP 方法代替 substr?

function getExcerpt()
{
    //currently this is character count. Need to convert to word count
    $my_excerptLength = 100; 
    $my_postExcerpt = strip_tags(
        substr(
            'This is the post excerpt hard coded for demo purposes',
            0,
            $my_excerptLength 
            )
        );
    return ": <em>".$my_postExcerpt." [...]</em>";}
}
4

2 回答 2

5

使用str_word_count

根据参数,它可以返回字符串中的单词数(默认)或找到的单词数组(如果您只想使用它们的子集)。

因此,要返回一段文本的前 100 个单词:

function getExcerpt($text)
{
    $words_in_text = str_word_count($text,1);
    $words_to_return = 100;
    $result = array_slice($words_in_text,0,$words_to_return);
    return '<em>'.implode(" ",$result).'</em>';
}
于 2011-06-20T19:34:09.270 回答
1

如果您希望您的脚本不应该忽略句点和逗号以及其他标点符号,那么您应该采用这种方法。

 function getExcerpt($text)
{
   $my_excerptLength = 100; 
   $my_array = explode(" ",$text);
   $value = implode(" ",array_slice($my_array,0,$my_excerptLength));
   return 

}

注意:这只是一个例子。希望它对你有帮助。如果它帮助你,不要忘记投票。

于 2015-03-06T08:40:38.390 回答