Home > php教程 > php手册 > php strcspn 查找搜索字符串

php strcspn 查找搜索字符串

WBOY
Release: 2016-06-01 09:45:16
Original
1342 people have browsed it

定义和用法

strcspn() 函数返回在找到任何指定的字符之前,在字符串查找的字符数(包括空格)。

提示:请使用 strspn() 函数返回字符串中包含指定字符列表中字符的字符数。

注释:该函数是二进制安全的。

 

语法

<code class="language-php">strcspn(string,char,start,length)</code>
Copy after login
参数 描述
string 必需。规定要搜索的字符串。
char 必需。规定要查找的字符。
start 可选。规定在字符串中何处开始查找。
length 可选。规定字符串的长度(搜索多少字符)。

 

返回值

返回值: 返回在找到指定符的任何部分之前,在字符串中查找的字符数。
PHP 版本: 4+
更新日志: 在 PHP 4.3 中,新增了 start 和 length 参数。

 

实例

<code class="language-php"><?php //使用所有的参数来输出在字符串 "Hello world!" 中找到字符 "w" 之前查找的字符数:
echo strcspn("Hello world!","w",0,6); // 开始位置是 0,搜索字符串的长度是 6。
echo "<br/>";


//输出在字符串 "Hello world!" 中找到字符 "w" 之前查找的字符数:
echo strcspn("Hello world!","w");

?></code>
Copy after login

在线运行

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template