返回在包含字符 "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 中添加了参数。 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!