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函數怎麼用的詳細內容,更多請關注TW511.COM其它相關文章!