PHP mb_substr_count mbstring 函数

  • 定义和用法

    mb_substr_count - 统计字符串出现的次数
  • 版本支持

    PHP4 PHP5 PHP7
    支持 支持 支持
  • 语法

    mb_substr_count( string $haystack , string $needle [, string $encoding = mb_internal_encoding() ] )
    mb_substr_count() 统计子字符串 needle 出现在字符串 haystack 中的次数。
  • 参数

    参数 必需的 描述
    haystack 要检查的字符串。
    needle 待查找的字符串。
    encoding encoding 参数为字符编码。如果省略,则使用内部字符编码。
  • 返回值

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

    echo mb_substr_count("This is a test", "is"); // 输出 2
    
    尝试一下
  • 相关页面

    mb_strpos() - 查找字符串在另一个字符串中首次出现的位置
    mb_substr() - 获取部分字符串
    substr_count() - 计算字串出现的次数