php中的str_word_count函數的用法:【str_word_count(string,return,char)】。 str_word_count函數用於計算字串中的單字數,如【print_r(str_word_count("I love",1)】。
php str_word_count函數用於計算字串中的單字數,其語法為str_word_count(string,return,char),參數string必需,是規定要檢查的字串。
(建議教學:php影片教學)
php str_word_count函數怎麼用?
作用:計算字串中的單字數。
語法:
str_word_count(string,return,char)
參數:
string 必要。規定要檢查的字串。
return 可選。規定str_word_count() 函數的回傳值。
#可能的值:
0 - 預設。傳回找到的單字的數目。
1 - 傳回包含字串中的單字的陣列。
2 - 傳回一個數組,其中的鍵名是單字在字串中的位置,鍵值是實際的單字。
char 可選。規定被視為單字的特殊字元。
說明:
計算字串中的單字數。
php str_word_count()函數使用範例1
<?php echo str_word_count("I love php!"); ?>
輸出:
3
php str_word_count()函數使用範例2
<?php echo str_word_count("i study php at php.cn"); ?>
輸出:
6
以上是php中的str_word_count函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!