php中的count_chars函數的用法:【count_chars(string,mode)】。 count_chars函數用於傳回字串中所用字元的信息,如【count_chars($str,3)】。
php count_chars函數傳回一個字串,包含所有在字串中使用過的不同字符,其語法是count_chars(string,mode),參數string必需,是規定要檢查的字串。
(推薦教學:php影片教學)
php count_chars函數怎麼用?
作用:傳回一個字串,包含所有在字串中使用過的不同字元。
語法:
count_chars(string,mode)
參數:
string 必要。規定要檢查的字串。
mode 可選。規定返回模式。預設是 0。
以下是不同的返回模式:
0 - 數組,ASCII 值為鍵名,出現的次數為鍵值,
##1 -數組,ASCII 值為鍵名,出現的次數為鍵值,只列出出現次數大於0 的值,2 - 數組,ASCII 值為鍵名,出現的次數為鍵值,只列出出現次數等於0 的值,3 - 字串,帶有所有使用過的不同的字符,4 - 字串,帶有所有未使用過的不同的字符。 說明:傳回字串中所用字元的資訊php count_chars()函數使用範例1
<?php //使用模式3输出 $str = "Hello php.cn!"; echo count_chars($str,3); ?>
!.Hcehlnop
php count_chars()函數使用範例2
<?php //使用模式1的数组形式输出 $str = "Hello php.cn!"; print_r(count_chars($str,1)) ; ?>
Array ( [32] => 1 [33] => 1 [46] => 1 [72] => 1 [99] => 1 [101] => 1 [104] => 1 [108] => 2 [110] => 1 [111] => 1 [112] => 2 )
以上是php中的count_chars函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!