PHP strspn() 函数 PHP strrpos() 函数 PHP strstr() 函数 PHP strspn() 函数 实例 返回在字符串 "Hello world!" 中包含字符 "kHlleo" 的数目: <?php echo strspn("Hello world!","kHlleo"); ?> 定义和用法 strspn() 函数返回在字符串中包含 charlist 参数中指定的字符数目。 提示: 请使用 strcspn() 函数来返回在找到任何指定的字符之前,在字符串查找的字符数。 注释: 该函数是二进制安全的。 语法 strspn( _string,charlist,start,length_ ) 参数 描述 _string_ 必需。规定被搜索的字符串。 _charlist_ 必需。规定要查找的字符。 _start_ 可选。规定在字符串的何处开始。 _length_ 可选。定义字符串的长度。 技术细节 返回值: 返回在字符串中包含 _charlist_ 参数中指定的字符数目。 PHP 版本: 4+ 更新日志: 在 PHP 4.3 中,新增了 _start_ 和 _length_ 参数。 实例 1 返回在字符串 "abcdefand" 中包含字符 "abc" 的数目: <?php echo strspn("abcdefand","abc"); ?> PHP strrpos() 函数 PHP strstr() 函数