strspn函数php,php strspn函数怎么用

PHP strspn()函数用于计算字符串中全部字符都存在于指定字符集合中的第一段子串的长度,其语法是strspn(string,charlist,start,length),参数string必需,指规定被搜索的字符串;charlist必需,指规定要查找的字符。

strspn函数php,php strspn函数怎么用_第1张图片

php strspn函数怎么用?

php strspn()函数 语法

作用:返回字符串中包含某些字符的数目

语法:strspn(string,charlist,start,length)

参数:

string 必需。规定被搜索的字符串。

charlist 必需。规定要查找的字符。

start可选。规定在字符串的何处开始。

length可选。定义字符串的长度。

说明:

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

php strspn()函数使用示例1

echo strspn("Hello world!","kHlleo");

?>

输出:5

php strspn()函数使用示例2

echo strspn("PHP is a good development language! I love PHP","PHP");

?>

输出:3

本篇文章就是关于PHP strspn函数的介绍,希望对需要的朋友有所帮助!

你可能感兴趣的:(strspn函数php)