Php/docs/function.strpbrk
来自菜鸟教程
strpbrk
(PHP 5, PHP 7)
strpbrk — 在字符串中查找一组字符的任何一个字符
说明
strpbrk
( string $haystack
, string $char_list
) : string
strpbrk() 函数在 haystack
字符串中查找 char_list
中的字符。
参数
haystack
- 在此字符串中查找
char_list
。 char_list
- 该参数区分大小写。
返回值
返回一个以找到的字符开始的子字符串。如果没有找到,则返回 false
。
范例
Example #1 strpbrk() 范例
<?php$text = 'This is a Simple text.';// 输出 "is is a Simple text.",因为 'i' 先被匹配echo strpbrk($text, 'mi');// 输出 "Simple text.",因为字符区分大小写echo strpbrk($text, 'S');?>