str_word_count() 函数计算字符串中的单词数。
str_word_count(string,return,char)
参数 | 描述 |
---|---|
string | 必需。规定要检查的字符串。 |
return |
可选。规定 str_word_count() 函数的返回值。 可能的值:
|
char | 可选。规定被视为单词的特殊字符。 |
返回值: | 返回数字或者数组,取决于所选择的 return 参数。 |
PHP 版本: | 4.3.0+ |
更新日志: | 在 PHP 5.1 中,新增了 char 参数。 |
返回包含字符串中的单词的数组:
<?php print_r(str_word_count("I love Shanghai!",1)); ?>
返回一个数组,其中的键名是单词在字符串中的位置,键值是实际的单词:
<?php print_r(str_word_count("I love Shanghai!",2)); ?>
设置及不设置 char 参数:
<?php print_r(str_word_count("I love Shanghai & good morning!",1)); print_r(str_word_count("I love Shanghai & good morning!",1,"&")); ?>
如对本文有疑问,请提交到交流论坛,广大热心网友会为你解答!! 点击进入论坛
Powered by 365建站网 RSS地图 HTML地图
copyright © 2013-2024 版权所有 鄂ICP备17013400号