|
PHP5中文手册
str_word_count(PHP 4 >= 4.3.0, PHP 5) str_word_count — Return information about words used in a string 说明
mixed str_word_count
( string $string
[, int $format
[, string $charlist
]] )
Counts the number of words inside string . If the optional format is not specified, then the return value will be an integer representing the number of words found. In the event the format is specified, the return value will be an array, content of which is dependent on the format . The possible value for the format and the resultant outputs are listed below. For the purpose of this function, 'word' is defined as a locale dependent string containing alphabetic characters, which also may contain, but not start with "'" and "-" characters. 参数
返回值Returns an array or an integer, depending on the format chosen. 更新日志
范例
Example#1 A str_word_count() example
<?php 上例将输出:
|