php查找字符串出现次数的方法
在php中查找字符串出现次数,可以通过substr_count()函数来完成。
substr_count函数
substr_count($haystack, $needle [,$offset [,$length]])
参数:
$haystack表示母字符串,$needl表示要查找的字符
$offset表示查找的起点,$length表示查找的长度,均为可选参数
例1:
复制代码 代码示例:
<?php
$str="this is a test";
echo substr_count($str,'is') .'<br>';
echo substr_count($str,'is',3) .'<br>';
echo substr_count($str,'is',3,3) .'<br>';
?>
例2:
复制代码 代码示例:
<?php
$str = 'http://www.jb200.com
脚本学堂_脚本编程入门教程_脚本设计交流_字符出现次数';
echo substr_count($str,'w').'<br />';
echo substr_count($str,'t').'<br />';
echo substr_count($str,'脚本学堂');
?>
输出结果:
3
3
1
php字符串查找函数:
复制代码 代码示例:
strstr — 查找字符串的首次出现
stristr strstr不区分大小写的版本
strpos -查找字符串首次出现的位置
string substr ( string $string , int $start [, int $length ] )
string strrchr ( string $haystack , mixed $needle )
strripos -计算指定字符串在目标字符串中最后一次出现的位置(不区分大小写)
stripos -查找字符串首次出现的位置(不区分大小定)
strrpos -计算指定字符串在目标字符串中最后一次出现的位置