PHP Conference Japan 2024

mb_substr_count

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

mb_substr_count计算子字符串出现的次数

描述

mb_substr_count(字符串 $haystack, 字符串 $needle, ?字符串 $encoding = null): 整数

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

参数

haystack

要检查的 字符串

needle

要查找的 字符串

encoding

encoding 参数是字符编码。如果省略或为 null,则将使用内部字符编码值。

返回值

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

变更日志

版本 描述
8.0.0 encoding 现在可以为空。

示例

示例 #1 mb_substr_count() 示例

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

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top