很抱歉这个非常基本的问题,但是在 Google 或SymbolHound中都没有简单的方法来搜索这样的字符串 。在 PHP 手册(模式语法和preg_replace)中也没有找到答案。
此代码位于接收$content
和$length
参数的函数内。
那有什么preg_replace
用?
$the_string = preg_replace('#\s+#', ' ', $content);
$words = explode(' ', $the_string);
if( count($words) <= $length )
另外,使用它会更好str_word_count
吗?