php中substr_count函數(shù)怎么使用

PHP
小億
87
2024-06-12 17:25:06

substr_count函數(shù)用于計(jì)算一個(gè)字符串中某個(gè)子字符串出現(xiàn)的次數(shù)。

語(yǔ)法: int substr_count ( string $haystack , string $needle [, int $offset = 0 [, int $length ]] )

參數(shù):

  • $haystack:要搜索的主字符串。
  • $needle:要查找的子字符串。
  • $offset:可選參數(shù),指定開(kāi)始搜索的位置。
  • $length:可選參數(shù),指定搜索的長(zhǎng)度。

示例:

$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變量中。

0