在php中查找字符串出現次數的查找可以通過substr_count()函數來實現,下面我來給各位同學詳細介紹這些函數了。
substr_count($haystack, $needle [,$offset [,$length]])
/$haystack表示母字符串,$needl表示要查找的字符
//$offset表示查找的起點,$length表示查找的長度,均為可選參數
實例:
$str="this is a test";
echo substr_count($str,'is') .'
';
echo substr_count($str,'is',3) .'
';
echo substr_count($str,'is',3,3) .'
';
?>
實例:
$str = 'http://www.bkjia.com 愛程序網_軟件編程入門教程_軟件設計交流_字符出現次數';
echo substr_count($str,'w').'
';
echo substr_count($str,'t').'
';
echo substr_count($str,'愛程序網');
?>
輸出結果為:
//以下是輸出結果
3
2
1
再分享一些字符串查找函數
strstr — 查找字符串的首次出現
stristr strstr不區分大小寫的版本
strpos -查找字符串首次出現的位置
string substr ( string $string , int $start [, int $length ] )
string strrchr ( string $haystack , mixed $needle )
strripos -計算指定字符串在目標字符串中最後一次出現的位置(不區分大小寫)
stripos -查找字符串首次出現的位置(不區分大小定)
strrpos -計算指定字符串在目標字符串中最後一次出現的位置