= 4.3.0, PHP 5, PHP 7, PHP 8)mb_substr_count — 統(tǒng)計字符串出現(xiàn)的次數(shù)說明mb_substr_count(string $haystack, string $needle, string $encoding =">

mb_substr_count

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

mb_substr_count統(tǒng)計字符串出現(xiàn)的次數(shù)

說明

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

統(tǒng)計子字符串 needle 出現(xiàn)在字符串 haystack 中的次數(shù)。

參數(shù)

haystack

要檢查的字符串。

needle

待查找的字符串

encoding

encoding 參數(shù)為字符編碼。如果省略或是 null,則使用內(nèi)部字符編碼。

返回值

子字符串 needle 出現(xiàn)在字符串 haystack 中的次數(shù)。

范例

示例 #1 mb_substr_count() 例子

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

參見