PHP strspn()函数用于计算字符串中全部字符都存在于指定字符集合中的第一段子串的长度,其语法是strspn(string,charlist,start,length),参数string必需,指规定被搜索的字符串;charlist必需,指规定要查找的字符。
php strspn函数怎么用?
php strspn()函数 语法
作用:返回字符串中包含某些字符的数目
语法:
strspn(string,charlist,start,length)
参数:
string 必需。规定被搜索的字符串。
charlist 必需。规定要查找的字符。
start 可选。规定在字符串的何处开始。
length 可选。定义字符串的长度。
说明:
返回在字符串中包含 charlist 参数中指定字符的数目。
php strspn()函数使用示例1
<?php echo strspn("Hello world!","kHlleo"); ?>
输出:
5
php strspn()函数使用示例2
<?php echo strspn("PHP is a good development language! I love PHP","PHP"); ?>
输出:
3
本篇文章就是关于PHP strspn函数的介绍,希望对需要的朋友有所帮助!
以上是php strspn函数怎么用的详细内容。更多信息请关注PHP中文网其他相关文章!