当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP mb_substr_count()用法及代码示例


在PHP中,我们可以使用函数mb_substr_count()计算给定字符串中子字符串的总数。

用法

int mb_substr_count(str $haystack, str $needle, str $encoding)

参数

mb_substr_count()接受三个参数:$haystack$needle$encoding

  • $haystack− 此参数将检查字符串。

  • $needle- 此参数将用于告诉从给定的总字符串中找到子字符串。

  • $encoding− 该参数为字符编码。如果它不存在或为空,则将使用内部字符编码值。

返回值

这将返回针子字符串在 haystack 字符串中出现的次数。

示例

<?php
   // mb_substr_count function is used
   $string= mb_substr_count("This is a test", "is");
   echo "$string";
?>

输出

2

相关用法


注:本文由纯净天空筛选整理自Urmila Samariya大神的英文原创作品 PHP – How to count the number of substring using mb_substr_count()?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。