(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
mb_substr_count — 计算子字符串出现的次数
计算 needle
子字符串在 haystack
string 中出现的次数。
needle
子字符串在 haystack
string 中出现的次数。
版本 | 描述 |
---|---|
8.0.0 |
encoding 现在可以为空。 |
示例 #1 mb_substr_count() 示例
<?php
echo mb_substr_count("This is a test", "is"); // 输出 2
?>