strspn()函数是PHP中的一个内置函数,语法为strspn(string,charlist,start,length),用于返回在字符串中包含 charlist 参数中指定字符的数目。
php strspn()函数怎么用?
strspn() 函数返回在字符串中包含 charlist 参数中指定的字符数目。
语法:strspn(string,charlist,start,length)
参数:
● string:必需。规定被搜索的字符串。
● charlist:必需。规定要查找的字符。
● start:可选。规定在字符串的何处开始。
● length:可选。定义字符串的长度。
返回值:返回在字符串中包含 charlist 参数中指定字符的数目。
下面通过示例来看看php strspn()函数的使用方法。
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