PHP strspn() 函数
PHP strspn() 函数
定义和用法
strspn() 函数返回在字符串中包含 charlist 参数中指定的字符数目。
提示:请使用 strcspn() 函数来返回在找到任何指定的字符之前,在字符串查找的字符数。
注释:该函数是二进制安全的。
语法
strspn(string,charlist,start,length)
参数 | 描述 |
---|---|
string | 必需。规定被搜索的字符串。 |
charlist | 必需。规定要查找的字符。 |
start | 可选。规定在字符串的何处开始。 |
length | 可选。定义字符串的长度。 |
技术细节
返回值: | 返回在字符串中包含 charlist 参数中指定的字符数目。 |
---|---|
PHP 版本: | 4+ |
更新日志: | 在 PHP 4.3 中,新增了 start 和 length 参数。 |
更多实例
PHP String 参考手册
相关文章
- PHP 字符串
- PHP 面向对象
- PHP $_GET 变量
- PHP 发送电子邮件
- PHP array_intersect_ukey() 函数
- PHP array_key_last() 函数
- PHP array_merge_recursive() 函数
- PHP array_reduce() 函数
- PHP array_shift() 函数
- PHP array_udiff_uassoc() 函数
- PHP array_uintersect() 函数
- PHP array_walk() 函数
- PHP array_walk_recursive() 函数
- PHP end() 函数
- PHP extract() 函数
- PHP key() 函数
- PHP usort() 函数
- PHP 5 Array 函数
- PHP 5 Directory 函数
- PHP 杂项 函数