mb_substr_count

(PHP 4 >= 4.3.0, PHP 5, PHP 7)

mb_substr_count统计字符串出现的次数

说明

mb_substr_count ( string $haystack , string $needle [, string $encoding = mb_internal_encoding() ] ) : int

统计子字符串 needle 出现在字符串 haystack 中的次数。

参数

haystack

要检查的字符串

needle

待查找的字符串

encoding

encoding 参数为字符编码。如果省略,则使用内部字符编码。

返回值

子字符串 needle 出现在字符串 haystack 中的次数。

范例

Example #1 mb_substr_count() 例子

<?php
echo mb_substr_count("This is a test""is"); // 输出 2
?>

参见

相关文章
php 多字节字符串 函数 解码 mime 头字段中的字符串php 多字节字符串 函数 根据 html 数字字符串解码成字符php 多字节字符串 函数 multibyte regular expression match for predefined multibyte stringphp 多字节字符串 函数 regular expression match with multibyte supportphp 多字节字符串 函数 descriptionphp 多字节字符串 函数 发送编码过的邮件php 多字节字符串 函数 大小写不敏感地查找字符串在另一个字符串中首次出现的位置php 多字节字符串 函数 大小写不敏感地查找字符串在另一个字符串里的首次出现php 多字节字符串 函数 查找字符串在另一个字符串中首次出现的位置php 多字节字符串 函数 查找指定字符在另一个字符串中最后一次的出现php 多字节字符串 函数 大小写不敏感地查找指定字符在另一个字符串中最后一次的出现php 多字节字符串 函数 大小写不敏感地在字符串中查找一个字符串最后出现的位置php 多字节字符串 函数 查找字符串在一个字符串中最后出现的位置php 多字节字符串 函数 查找字符串在另一个字符串里的首次出现php 多字节字符串 函数 返回字符串的宽度php 多字节字符串 函数 设置/获取替代字符php 多字节字符串 函数 统计字符串出现的次数php 字符串 函数 计算指定字符串在目标字符串中最后一次出现的位置(不区分大小写)php 字符串 函数 计算字串出现的次数php xml 解析器函数 将用 utf 8 方式编码的 iso 8859 1 字符串转换成单字节的 iso 8859 1 字符串。
关注编程学问公众号