目录

PHP str_word_count() 函数

❮ PHP 字符串参考

示例

计算字符串 "Hello World!" 中找到的单词数:

<?php
echo str_word_count("Hello world!");
?>
亲自试一试 »

定义和用法

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:

  • 0 - Default. Returns the number of words found
  • 1 - Returns an array with the words from the string
  • 2 - Returns an array where the key is the position of the word in the string, and value is the actual word
char Optional. Specifies special characters to be considered as words.


技术细节

返回值: 返回一个数字或数组,具体取决于所选的返回范围
PHP 版本: 4.3.0+
变更日志: 这个字符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,"&"));
?>
亲自试一试 »

❮ PHP 字符串参考