substr_count函數用于計算一個字符串中某個子字符串出現的次數。
語法: int substr_count ( string $haystack , string $needle [, int $offset = 0 [, int $length ]] )
參數:
示例:
$str = "Hello, World! Hello, PHP!";
$count = substr_count($str, "Hello");
echo $count; // 輸出:2
上面的示例中,substr_count函數會在字符串$str中查找子字符串"Hello"出現的次數,并將結果存儲在$count變量中。