php 查找字符串出现次数函数介绍
substr_count($haystack, $needle [,$offset [,$length]])
/$haystack表示母字符串,$needl表示要查找的字符
//$offset表示查找的起点,$length表示查找的长度,均为可选参数
实例:
代码如下 | 复制代码 |
<?php |
实例:
代码如下 | 复制代码 |
<?php 输出结果为: |
再分享一些字符串查找函数
strstr — 查找字符串的首次出现
stristr strstr不区分大小写的版本
strpos -查找字符串首次出现的位置
string substr ( string $string , int $start [, int $length ] )
string strrchr ( string $haystack , mixed $needle )
strripos -计算指定字符串在目标字符串中最后一次出现的位置(不区分大小写)
stripos -查找字符串首次出现的位置(不区分大小定)
strrpos -计算指定字符串在目标字符串中最后一次出现的位置
文章地址:http://www.phprm.com/function/48408.html
转载随意^^请带上本文地址!