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

php按单词截取字符串的方法_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:57:45864browse

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);
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/980114.htmlTechArticlephp按单词截取字符串的方法 这里指定字符串和单词数量进行截取 代码如下: ?php function limit_words($string, $word_limit) { $words = explode( ,$string); r...
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