定义和用法

strspn() 函数返回在字符串中包含 charlist 参数中指定字符的数目。

strcspn() 函数来返回在找到任何指定的字符之前,在字符串查找的字符数。

注释:该函数是二进制安全的。

语法

strspn(string,charlist,start,length)
参数描述
string必需。规定被搜索的字符串。
charlist必需。规定要查找的字符。
start可选。规定在字符串的何处开始。
length可选。定义字符串的长度。

技术细节

返回值:返回在字符串中包含 charlist 参数中指定字符的数目。
PHP 版本:4+
更新日志:在 PHP 4.3 中,新增了 startlength 参数。

demo

show(strspn('i am lern php ,我爱php',"aphp"));
show(strcspn('i am lern php ,我爱php',"l"));
show(strspn('abcdef',"cba"));
##输出
0
5
3