兩種查詢字串出現次數的方法:1、使用substr_count()函數,可區分大小寫的計算指定子字串在字串中出現的次數,語法「substr_count(字串,搜尋子串,開始搜尋位置,搜尋長度)」。 2.使用mb_substr_count()函數,可統計字串出現的次數,語法「mb_substr_count(字串,搜尋子字串,字元編碼)」。
本教學操作環境:windows7系統、PHP8.1版、DELL G3電腦
php查詢字串出現次數有兩個函數
substr_count()函數
#方法1:使用substr_count()函數統計次數
substr_count() 函數計算子字串在字串中出現的次數(區分大小寫的)。 語法:substr_count(string,substring,start,length)
<?php header("Content-type:text/html;charset=utf-8"); $str="I love Shanghai. Shanghai is the biggest city in china."; echo "原字符串:".$str."<br>"; $count=substr_count($str,"Shanghai"); echo "Shanghai 出现了:".$count."次"; ?>輸出結果:
<?php header("Content-type:text/html;charset=utf-8"); $str="我爱上海。上海是中国最大的城市"; echo "原字符串:".$str."<br>"; $count=substr_count($str,"上海"); echo "上海 出现了:".$count."次"; ?>
方法2:使用mb_substr_count()函數統計次數
mb_substr_count()函數統計字串出現的次數。 語法:mb_substr_count(string,substring,encoding)
<?php header("Content-type:text/html;charset=utf-8"); $str="我爱上海。上海是中国最大的城市。"; echo "原字符串:".$str."<br>"; $count=mb_substr_count($str,"中国"); echo "中国 出现了:".$count."次"; ?>輸出結果:
<?php header("Content-type:text/html;charset=utf-8"); $str="I love Shanghai. Shanghai is the biggest city in china."; echo "原字符串:".$str."<br>"; $count1=mb_substr_count($str,"Shanghai"); echo "Shanghai 出现了:".$count1."次<br>"; $count2=mb_substr_count($str,"shanghai"); echo "shanghai 出现了:".$count2."次"; ?>推薦學習:《
PHP視頻教程》
以上是php怎麼查詢字串出現的次數的詳細內容。更多資訊請關注PHP中文網其他相關文章!