Home >php教程 >php手册 >php strpbrk() 在字符串中查找指定字符中的任意一个

php strpbrk() 在字符串中查找指定字符中的任意一个

WBOY
WBOYOriginal
2016-06-01 09:45:151125browse

定义和用法

strpbrk() 函数在字符串中搜索指定字符中的任意一个。

注释:该函数对大小写敏感。

该函数返回指定字符第一次出现的位置开始的剩余部分。如果失败,则返回 FALSE。

语法

<code class="language-php">strpbrk(string,charlist)</code>
参数 描述
string 必需。规定要搜索的字符串。
charlist 必需。规定要查找的字符。

 

返回值

返回值: 返回从所查找的字符开始的字符串。如果没有找到,则返回 FALSE。
PHP 版本: 5+

 

实例

strpbrk() 函数区分大小写("S" 和 "s" 输出不相同):

<code class="language-php"><?php echo strpbrk("I love Shanghai!","S");
echo "<br>";
echo strpbrk("I love Shanghai!","s");
?></code>

在线运行

Statement:
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