mb_substr_count() 函数是 PHP 中的内置函数,用于计算给定字符串中字符串的出现次数。
用法:
mb_substr_count($haystack, $needle, $encoding): int
Parameters: 该函数接受三个参数,如下所述:
- $干草堆:这是我们检查是否我们的主要参数$针参数字符串是否在此字符串参数中。
- $needle: 这是您要在输入字符串中搜索的子字符串。它可以是任意长度。
- $encoding: 这是可选参数,定义您在输入中使用的编码类型。
返回值:次数$针字符串出现在$干草堆该函数将返回字符串。
示例 1:下面的代码演示了mb_substr_count()函数。
PHP
<?php
$string = "Geeks for Geeks";
$search_string = "for";
echo mb_substr_count($string, $search_string);
?>
输出:
1
示例 2:下面的代码演示了mb_substr_count()函数。
PHP
<?php
$string = "Geeks for Geeks is a learning platform "
. "where we can learn any programming language";
$search_string = "a";
echo mb_substr_count($string, $search_string);
?>
输出:
9
参考: https://www.php.net/manual/en/function.mb-substr-count.php
相关用法
- PHP mb_substr_count()用法及代码示例
- PHP mb_substr()用法及代码示例
- PHP mb_substitute_character()用法及代码示例
- PHP mb_strlen()用法及代码示例
- PHP mb_strtolower()用法及代码示例
- PHP mb_strtoupper()用法及代码示例
- PHP mb_str_split()用法及代码示例
- PHP mb_strrchr()用法及代码示例
- PHP mb_strimwidth()用法及代码示例
- PHP mb_stristr()用法及代码示例
- PHP mb_split()用法及代码示例
- PHP mb_strripos()用法及代码示例
- PHP mb_strstr()用法及代码示例
- PHP mb_scrub()用法及代码示例
- PHP mb_strpos()用法及代码示例
- PHP mb_stripos()用法及代码示例
- PHP mb_strrichr()用法及代码示例
- PHP mb_strcut()用法及代码示例
- PHP mb_convert_case()用法及代码示例
- PHP mb_check_encoding()用法及代码示例
- PHP mb_chr()用法及代码示例
- PHP mb_detect_order()用法及代码示例
- PHP mb_ereg()用法及代码示例
- PHP mb_http_input()用法及代码示例
- PHP mb_convert_encoding()用法及代码示例
注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP mb_substr_count() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。