您现在的位置是:首页 > PHP函数

李清波 2015-10-01 PHP函数 2051 复制当前网址

strspn



PHP strspn() 函数

定义和用法

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


语法

strspn(string,charlist,start,length)


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


提示和注释

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


例子

例子 1

<?php
echo strspn("Hello world!","kHlleo");
?>

输出:

5


例子 2

<?php
echo strspn("abcdefand","abc");
?>

输出:

3


文章来源:https://liqingbo.com/blog-875.html

上一篇:strstr

下一篇:strrpos

评论