mb_substr_count() 函數是 PHP 中的內置函數,用於計算給定字符串中字符串的出現次數。
用法:
mb_substr_count($haystack, $needle, $encoding): int
Parameters: 該函數接受三個參數,如下所述:
- $幹草堆:這是我們檢查是否我們的主要參數$針參數字符串是否在此字符串參數中。
- $needle: 這是您要在輸入字符串中搜索的子字符串。它可以是任意長度。
- $encoding: 這是可選參數,定義您在輸入中使用的編碼類型。
返回值:次數$針字符串出現在$幹草堆該函數將返回字符串。
示例 1:下麵的代碼演示了mb_substr_count()函數。
PHP
<?php
$string = "Geeks for Geeks";
$search_string = "for";
echo mb_substr_count($string, $search_string);
?>
輸出:
1
示例 2:下麵的代碼演示了mb_substr_count()函數。
PHP
<?php
$string = "Geeks for Geeks is a learning platform "
. "where we can learn any programming language";
$search_string = "a";
echo mb_substr_count($string, $search_string);
?>
輸出:
9
參考: https://www.php.net/manual/en/function.mb-substr-count.php
相關用法
- PHP mb_substr_count()用法及代碼示例
- PHP mb_substr()用法及代碼示例
- PHP mb_substitute_character()用法及代碼示例
- PHP mb_strlen()用法及代碼示例
- PHP mb_strtolower()用法及代碼示例
- PHP mb_strtoupper()用法及代碼示例
- PHP mb_str_split()用法及代碼示例
- PHP mb_strrchr()用法及代碼示例
- PHP mb_strimwidth()用法及代碼示例
- PHP mb_stristr()用法及代碼示例
- PHP mb_split()用法及代碼示例
- PHP mb_strripos()用法及代碼示例
- PHP mb_strstr()用法及代碼示例
- PHP mb_scrub()用法及代碼示例
- PHP mb_strpos()用法及代碼示例
- PHP mb_stripos()用法及代碼示例
- PHP mb_strrichr()用法及代碼示例
- PHP mb_strcut()用法及代碼示例
- PHP mb_convert_case()用法及代碼示例
- PHP mb_check_encoding()用法及代碼示例
- PHP mb_chr()用法及代碼示例
- PHP mb_detect_order()用法及代碼示例
- PHP mb_ereg()用法及代碼示例
- PHP mb_http_input()用法及代碼示例
- PHP mb_convert_encoding()用法及代碼示例
注:本文由純淨天空篩選整理自neeraj3304大神的英文原創作品 PHP mb_substr_count() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。