Php/func string str word count
来自菜鸟教程
PHP str_word_count()函数
例
计算在字符串“ Hello World!”中找到的单词数:
<?php echo str_word_count("Hello world!"); ?>
定义和用法
str_word_count()函数计算字符串中的单词数。
句法
str_word_count(string,return,char)
参数值
参数 | 描述 |
---|---|
string | 需要。指定要检查的字符串 |
return |
可选的。指定str_word_count()函数的返回值。 可能的值:
|
char | 可选的。指定特殊字符视为单词。 |
技术细节
返回值: | 返回数字或数组,具体取决于所选内容
return 参数 |
PHP版本: | 4.3.0+ |
更新日志: | The
char 参数已在PHP 5.1中添加 |
更多例子
例
返回包含字符串中的单词的数组:
<?php print_r(str_word_count("Hello world!",1)); ?>
例
返回一个数组,其中键是单词在字符串中的位置,而值是实际单词:
<?php print_r(str_word_count("Hello world!",2)); ?>
例
不使用和使用char参数:
<?php print_r(str_word_count("Hello world & good morning!",1)); print_r(str_word_count("Hello world & good morning!",1,"&")); ?>