举报投诉联系我们 手机版 热门标签 名动网
您的位置:名动网 > substr_count php PHP substr_count() 函数

substr_count php PHP substr_count() 函数

2023-06-12 05:20 PHP教程

substr_count php PHP substr_count() 函数

substr_count php

substr_count() 函数用于计算字符串中指定字符的出现次数。

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

参数	        描述
haystack	必需。规定要检查的字符串。
needle	    必需。规定要查找的字符串。
offset	    可选。规定在 haystack 中开始搜索的位置。默认是 0 。
length	    可选。规定在 haystack 中要搜索的最大长度,从 offset 开始计数。如果未规定 length,则将从 offset 到 haystack 结尾进行搜索。

substr_count() 函数用于在一个字符串中找出另一个字符或者字符串出现的次数,如果 needle 是一个数组,则会返回匹配到 needle 数组中任意元素出现的总和;如果 needle 是一个字典(array of strings),则会返回匹配到 needle 数组中所有元素出现的总和。

例子1:

$str = 'This is a test'; 
echo substr_count($str, 'is'); // 输出 2 

上例子中 substr_count() 返回了单词 "is" 出现在字符串 $str 中的总和(2 次).

例子2:

$arr = array('is', 'test'); 
echo substr_count($str, $arr); // 输出 3 

上例子中 substr_count() 返回了单词 "is" 和 "test" 出

PHP substr_count() 函数

PHP substr_count() 函数

PHP String 参考手册 PHP String 参考手册

实例

计算 "world" 在字符串中出现的次数:

<?php
echo substr_count("Hello world. The world is nice","world");
?>

运行实例 »

substr_count() 函数计算子串在字符串中出现的次数。

注释:子串是区分大小写的。

注释:该函数不计数重叠的子串(参见实例 2) 。

注释:如果 start 参数加上 length 参数大于字符串长度,该函数则生成一个警告(参见实例 3)。


语法

substr_count(string,substring,start,length)

参数 描述
string 必需。规定要检查的字符串。
substring 必需。规定要检索的字符串。
start 可选。规定在字符串中何处开始搜索。
length 可选。规定搜索的长度。

技术细节

返回值: 返回子串在字符串中出现的次数。
PHP 版本: 4+
更新日志: 在 PHP 5.1 中,新增了 startlength 参数。


更多实例

实例 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 PHP"
echo substr_count($str,"is",3)."<br>"; // The string is now reduced to "s is PHP"
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

如果 start 和 length 参数超过字符串长度,该函数则输出一个警告:

<?php
echo $str = "This is nice";
substr_count($str,"is",3,9);
?>

由于长度值超过字符串的长度(3 + 9大于12)。所以这将输出一个警告。



PHP String 参考手册 PHP String 参考手册
阅读全文
以上是名动网为你收集整理的substr_count php PHP substr_count() 函数全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 名动网 mdwl.vip 版权所有 联系我们