PHP strpbrk() 函数
PHP strpbrk() 函数
定义和用法
strpbrk() 函数在字符串中搜索指定字符中的任意一个。
注释:该函数是区分大小写的。
该函数返回指定字符第一次出现的位置开始的剩余部分。如果没有找到,则返回 FALSE。
语法
strpbrk(string,charlist)
参数 | 描述 |
---|---|
string | 必需。规定被搜索的字符串。 |
charlist | 必需。规定要查找的字符。 |
技术细节
返回值: | 返回从所查找的字符开始的字符串。如果没有找到,则返回 FALSE。 |
---|---|
PHP 版本: | 5+ |
更多实例
实例 1
该函数是区分大小写的("W" 和 "w" 输出相同):
<?php
echo strpbrk("Hello world!","W");
echo "<br>";
echo strpbrk("Hello world!","w");
?>
echo strpbrk("Hello world!","W");
echo "<br>";
echo strpbrk("Hello world!","w");
?>
运行实例 »
PHP String 参考手册
相关文章
- PHP 发送电子邮件
- PHP 异常处理
- PHP array_diff_key() 函数
- PHP array_intersect_assoc() 函数
- PHP array_merge_recursive() 函数
- PHP array_splice() 函数
- PHP array_sum() 函数
- PHP array_udiff_assoc() 函数
- PHP array_walk() 函数
- PHP extract() 函数
- PHP key() 函数
- PHP next() 函数
- PHP sizeof() 函数
- PHP sort() 函数
- PHP Error 和 Logging 函数
- PHP 5 Filesystem 函数
- PHP Libxml 函数
- PHP 杂项 函数
- PHP 5 MySQLi 函数
- PHP PDO