String 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

strcspn

(PHP 4, PHP 5)

strcspnFind length of initial segment not matching mask

说明

int strcspn ( string $str1 , string $str2 [, int $start [, int $length ]] )

Returns the length of the initial segment of str1 which does not contain any of the characters in str2 .

参数

str1

The first string.

str2

The second string.

start

The start position of the string to examine.

length

The length of the string to examine.

返回值

Returns the length of the segment as an integer.

更新日志

版本 说明
4.3.0 The start and length were added

注释

Note: 本函数可安全用于二进制对象。

参见


String 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程