mb_substr_count

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

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

描述

mb_substr_count(string $haystack, string $needle, ?string $encoding = null): int

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

参数

haystack

要检查的 string

needle

要查找的 string

encoding

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

返回值

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

变更日志

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

示例

示例 #1 mb_substr_count() 示例

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

参见

添加备注

用户贡献的注释

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