{site_name}

{site_name}

🌜 搜索

substr_count() 是 PHP 中的一个字符串函数,用于计算一个字符串中指定子字符串出现的次数

php 𝄐 0
php substr_count
substr_count() 是 PHP 中的一个字符串函数,用于计算一个字符串中指定子字符串出现的次数。

函数语法如下:


int substr_count ( string $haystack , string $needle [, int $offset = 0 [, int $length ]] )


其中,$haystack 表示要查找的字符串,$needle 表示要查找的子字符串,$offset 表示从哪个位置开始查找,默认为 0,$length 表示查找的长度,默认为整个字符串的长度。

以下是一个示例:

php
$str = "the quick brown fox jumps over the lazy dog";
$count = substr_count($str, "the");
echo $count; // 输出 2


在上面的例子中,$str 是要查找的字符串,"the" 是要查找的子字符串,substr_count($str, "the") 计算了 "the" 出现的次数,并将结果存储在 $count 变量中。最后输出 $count 的值为 2,表示 "the" 在字符串中出现了两次。