所述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字符串參考