mb_substr_count()
mb_substr_count - Count the number of substring occurrences
Syntax
int mb_substr_count (
string $haystack,
string $needle,
string $encoding)
Arguments
- haystack - The string being checked.
- needle - The string being found.
- encoding - The encoding parameter is the character encoding. If it is omitted, the internal character encoding value will be used.
Description
Counts the number of times the needle substring occurs in the haystack string.
Version
PHP 4.3.0, 5
Return value
The number of times the needle substring occurs in the haystack string.