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