PHP strspn() 函数


PHP String 函数

定义和用法

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


PHP String 函数
粤ICP备11097351号-1