在php中查找字符串出现次数的查找可以通过substr_count()函数来实现,下面我来给各位同学详细介绍这些函数了.
substr_count($haystack, $needle [,$offset [,$length]])
/$haystack表示母字符串,$needl表示要查找的字符
//$offset表示查找的起点,$length表示查找的长度,均为可选参数
实例,代码如下:
- <?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>';
- ?>
实例,代码如下:
- <?php
- $str = 'http://www.Vevb.com 爱程序网_软件编程入门教程_软件设计交流_字符出现次数';
- echo substr_count($str,'w').'<br />';
- echo substr_count($str,'t').'<br />';
- echo substr_count($str,'爱程序网');
- ?>
- //输出结果为:
- //以下是输出结果
- 3
- 2
- 1
再分享一些字符串查找函数
新闻热点
疑难解答