所述substr_count()函数计算在字符串出现一个子的次数。
注:子是区分大小写的。
注:此功能不计重叠子(see example 2)
注意:该函数产生一个警告,如果开始参数加上长度参数大于字符串长度大(see example 3)
句法
substr_count( string,substring,start,length )
参数 | 描述 |
---|---|
string | 需要。 指定要检查的字符串 |
substring | 需要。 指定要搜索的字符串 |
start | 可选的。 指定要在其中字符串开始搜索 |
length | 可选的。 指定搜索的长度 |
技术细节
返回值: | 返回字符串中出现子的次数 |
---|---|
PHP版本: | 4+ |
更新日志: | 在PHP 5.1加入的开始和长度参数 |
更多示例
实施例1
使用所有参数:
<?php
$str = "This is nice";
echo strlen($str)."<br>"; // Using strlen() to
return the string length
echo substr_count($str,"is")."<br>"; // The
number of times "is" occurs in the string
echo substr_count($str,"is",2)."<br>";
// The string is now reduced to "is is nice"
echo substr_count($str,"is",3)."<br>";
// The string is now reduced to "s is nice"
echo substr_count($str,"is",3,3)."<br>";
// The string is now reduced to "s i"
?>
运行示例» 实施例2
重叠的子字符串:
<?php
$str = "abcabcab";
echo substr_count($str,"abcab"); // This function
does not count overlapped substrings
?>
运行示例» 实施例3
如果开始和长度参数超过字符串长度,此功能将输出一个警告:
<?php
echo $str = "This is nice";
substr_count($str,"is",3,9);
?>
这将输出一个警告,因为长度值超过字符串长度(3+9 is greater than 12)
<PHP字符串参考