php中的substr_count函數的用法:【substr_count(string,substring,start,length)】。 substr_count函數用於計算指定字符串在字串中出現的次數。
php substr_count函數用於統計一個字串,在另一個字串中出現次數,其語法為substr_count(string,substring,start,length) ,參數string 必需,是規定被檢查的字串;substring 必需,規定要搜尋的字串。
(推薦教學:php影片教學)
php substr_count函數怎麼用?
作用:統計一個字串,在另一個字串中出現次數
語法:
substr_count(string,substring,start,length)
參數:
string 必需。規定被檢查的字串。
substring 必需。規定要搜尋的字串。
start 可選。規定在字串中何處開始搜尋。
length 可選。規定搜尋的長度。
說明:
計算字串中出現子字串中的次數。子字串是區分大小寫的。此函數不計數重疊的子字串。如果 start 參數加上 length 參數大於字串長度,則函數產生一個警告。
php substr_count()函數使用範例1
<?php echo substr_count("I love php.I'm study in php.cn","php"); ?>
輸出:
2
php substr_count()函數使用範例2
<?php $str = "This is php.cn test"; echo substr_count($str,"is",3,9); ?>
輸出:
1
以上是php中的substr_count函數怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!