在线文档教程
PHP

strpbrk

strpbrk

(PHP 5, PHP 7)

strpbrk - 在字符串中搜索任何一组字符

描述

string strpbrk ( string $haystack , string $char_list )

strpbrk()在haystack字符串中搜索char_list。

参数

haystack

char_list要查找的字符串。

char_list

该参数区分大小写。

返回值

返回从找到的字符开始的字符串,如果未找到,则返回FALSE。

例子

示例#1 strpbrk()示例

<?php $text = 'This is a Simple text.'; // this echoes "is is a Simple text." because 'i' is matched first echo strpbrk($text, 'mi' // this echoes "Simple text." because chars are case sensitive echo strpbrk($text, 'S' ?>

扩展内容

  • strpos() - 查找字符串中第一次出现子字符串的位置

  • strstr() - 查找第一次出现的字符串

  • preg_match() - 执行正则表达式匹配

← strncmp

strpos →