str_word_count()函数用于计算字符串中的单词数。
mixed str_word_count ( string $string [, int $format = 0 [, string $charlist ]] )
统计 string 中单词的数量。如果可选的参数 format 没有被指定,那么返回值是一个代表单词数量的整型数。如果指定了 format 参数,返回值将是一个数组,数组的内容则取决于 format 参数。format 的可能值和相应的输出结果如下所列。
对于这个函数的目的来说,单词的定义是一个与区域设置相关的字符串。这个字符串可以包含字母字符,也可以包含 "'" 和 "-" 字符(但不能以这两个字符开始)。
PHP 5.1.0 版本 新增 charlist 参数。
返回一个数组或整型数,这取决于 format 参数的选择。
序号 | 参数与说明 |
---|---|
1 | string 必需。指定要检查的字符串。 |
2 | format 可选。指定 str_word_count() 函数的返回值。可能的值:
|
3 | charlist 可选。 附加的字符串列表,其中的字符将被视为单词的一部分。 |
试试下面的实例,返回包含字符串中的单词的数组,计算字符串中单词的数量:
<?php //计算字符串中单词的数量。 echo str_word_count("nhooo simply easy learning"); //返回包含字符串中单词的数组 print_r(str_word_count("Can i help you!",1)); //没有 charlist 参数 print_r(str_word_count("Can i help you & what's your name!",1)); //有 charlist 参数 print_r(str_word_count("Can i help you & what's your name!",1,'&')); ?>测试看看‹/›
输出结果
4 Array ( [0] => Can [1] => i [2] => help [3] => you ) Array ( [0] => Can [1] => i [2] => help [3] => you [4] => what's [5] => your [6] => name ) Array ( [0] => Can [1] => i [2] => help [3] => you [4] => & [5] => what's [6] => your [7] => name )