php如何查找字符串出现几次 - 编程语言

博主:xiaoweixiaowei 2023-01-18 条评论

小编给大家分享一下php如何查找字符串出现几次,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

查找方法:1、使用substr_count(),语法“substr_count(string,substring)”;2、使用mb_substr_count(),语法“mb_substr_count(string,substring)”。

本教程操作环境:windows7系统、PHP7.1版、DELL G3电脑

方法1:使用substr_count()函数

substr_count() 函数计算子串在字符串中出现的次数(区分大小写的)。

语法:

substr_count(string,substring,start,length)
  • string    必需。规定被检查的字符串。

  • substring    必需。规定要搜索的字符串。

  • start    可选。规定在字符串中何处开始搜索。

  • length    可选。规定搜索的长度。

注:如果 start 参数加上 length 参数大于字符串长度,则该函数生成一个警告。

示例:

php如何查找字符串出现几次 - 编程语言
<?php
header("Content-type:text/html;charset=utf-8");
$str="I love Shanghai. Shanghai is the biggest city in china.";
$count=substr_count($str,"Shanghai");
echo "Shanghai 出现了:".$count."次";
?>

输出结果:

方法2:使用mb_substr_count()函数

mb_substr_count()函数统计字符串出现的次数。

语法:

mb_substr_count(string,substring,encoding)
  • string    必需。规定被检查的字符串。

  • substring    必需。规定要搜索的字符串。

  • encoding 可选。规定字符编码。如果省略或是 null,则使用内部字符编码。

<?php
header("Content-type:text/html;charset=utf-8");
$str="我爱上海。上海是中国最大的城市。";
$count=mb_substr_count($str,"上海");
echo "上海 出现了:".$count."次";
?>

以上是“php如何查找字符串出现几次”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注云行业资讯频道!

The End

发布于:2023-01-18,除非注明,否则均为 主机评测原创文章,转载请注明出处。