PHP str_word_count() 函數
PHP str_word_count() 函數
定義和用法
str_word_count() 函數計算字符串中的單詞數。
語法
str_word_count(string,return,char)
參數 | 描述 |
---|---|
string | 必需。規定要檢查的字符串。 |
return | 可選。規定 str_word_count() 函數的返回值。 可能的值:
|
char | 可選。規定被認定為單詞的特殊字符。 |
技術細節
返回值: | 返回一個數字或者一個數組,取決于所選擇的 return 參數。 |
---|---|
PHP 版本: | 4.3.0+ |
更新日志: | 在 PHP 5.1 中,新增了 char 參數。 |
更多實例
實例 3
沒有 char 參數和有 char 參數:
<?php
print_r(str_word_count("Hello world & good morning!",1));
print_r(str_word_count("Hello world & good morning!",1,"&"));
?>
print_r(str_word_count("Hello world & good morning!",1));
print_r(str_word_count("Hello world & good morning!",1,"&"));
?>
運行實例 ?

相關文章
- PHP 安裝
- PHP 語法
- PHP $_POST 變量
- PHP Session
- PHP 過濾器
- PHP 高級過濾器
- PHP array_count_values() 函數
- PHP array_fill_keys() 函數
- PHP array_flip() 函數
- PHP array_product() 函數
- PHP array_shift() 函數
- PHP array_slice() 函數
- PHP array_splice() 函數
- PHP array_walk_recursive() 函數
- PHP arsort() 函數
- PHP end() 函數
- PHP natsort() 函數
- PHP rsort() 函數
- PHP uasort() 函數
- PHP 5 Array 函數