定义和用法
该str_word_count()函数计算字符串中的单词的数量。
句法
str_word_count( string,return,char )
参数 | 描述 |
---|---|
string | 需要。 指定要检查的字符串 |
return | 可选的。 指定的返回值str_word_count()函数。 可能的值:
|
char | 可选的。 指定要被视为词的特殊字符。 |
技术细节
返回值: | 返回一个数或一个数组,取决于所选择的返回参数 |
---|---|
PHP版本: | 4.3.0+ |
更新日志: | 在PHP 5.1中加入的烧烤参数 |
更多示例
实施例3
如果没有与焦炭参数:
<?php
print_r(str_word_count("Hello world & good morning!",1));
print_r(str_word_count("Hello world & good morning!",1,"&"));
?>
运行示例» <PHP字符串参考