Home  >  Article  >  php教程  >  php按单词截取字符串的方法,php截取字符串

php按单词截取字符串的方法,php截取字符串

WBOY
WBOYOriginal
2016-06-13 09:07:301031browse

php按单词截取字符串的方法,php截取字符串

本文实例讲述了php按单词截取字符串的方法。分享给大家供大家参考。具体分析如下:

这里指定字符串和单词数量进行截取
复制代码 代码如下: function limit_words($string, $word_limit)
{
    $words = explode(" ",$string);
    return implode(" ",array_splice($words,0,$word_limit));
}
//Example Usage
$content = "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
echo limit_words($content,20);
?>

希望本文所述对大家的php程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn