目录

PHP strspn() 函数

❮ PHP 字符串参考

示例

返回在包含字符 "kHlleo" 的字符串 "Hello world!" 中找到的字符数:

<?php
echo strspn("Hello world!","kHlleo");
?>
亲自试一试 »

定义和用法

strspn() 函数返回在仅包含 charlist 参数中的字符的字符串中找到的字符数。

提示:使用strcspn()函数返回在找到指定字符的任何部分之前在字符串中找到的字符数。

笔记:该函数是二进制安全的。


语法

strspn( string,charlist,start,length)

参数值

Parameter Description
string Required. Specifies the string to search
charlist Required. Specifies the characters to find
start Optional. Specifies where in the string to start
length Optional. Defines the length of the string

技术细节

返回值: 返回在仅包含以下字符的字符串中找到的字符数字符列表范围。
PHP 版本: 4+
变更日志: 这个开始长度PHP 4.3 中添加了参数。

更多示例

示例

返回在包含字符 "abc" 的字符串 "abcdefand" 中找到的字符数:

<?php
echo strspn("abcdefand","abc");
?>
亲自试一试 »

❮ PHP 字符串参考