計算字串"Hello World!" 中的單字數:
<?phpecho str_word_count("Hello world!");?>str_word_count() 函數計算字串中的字數。
str_word_count( string,return,char )
參數 | 描述 |
---|---|
string | 必需。規定要檢查的字串。 |
return | 可選。規定str_word_count() 函數的回傳值。 可能的值: 0 - 預設。傳回找到的單字的數目。 1 - 傳回包含字串中的單字的陣列。 2 - 傳回一個數組,其中的鍵名是單字在字串中的位置,鍵值是實際的單字。 |
char | 可選。規定被認定為單字的特殊字元。 |
傳回值: | 傳回一個數字或數組,取決於所選的return參數。 |
---|---|
PHP 版本: | 4.3.0+ |
更新日誌: | 在PHP 5.1 中,新增了char參數。 |
傳回包含字串中的單字的陣列:
<?phpprint_r(str_word_count("Hello world!",1));?>傳回數組,其中的鍵名是單字在字串中的位置,鍵值是實際的單字:
<?phpprint_r(str_word_count("Hello world!",2));?>沒有char 參數且有char 參數:
<?phpprint_r(str_word_count("Hello world & good morning!",1));print_r(str_word_count("Hello world & good morning!",1,"&"));?>