str_word_count() 函数计算字符串中的单词数。
str_word_count(
string,return,char)
Parameter | Description |
---|---|
string | Required. Specifies the string to check |
return | Optional. Specifies the return value of the str_word_count() function. Possible values:
|
char | Optional. Specifies special characters to be considered as words. |
返回值: | 返回一个数字或数组,具体取决于所选的返回范围 |
---|---|
PHP 版本: | 4.3.0+ |
变更日志: | 这个字符PHP 5.1 中添加了参数 |
不带和带 char 参数:
<?php
print_r(str_word_count("Hello world & good morning!",1));
print_r(str_word_count("Hello world & good morning!",1,"&"));
?>
亲自试一试 »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!