strpbrk

(PHP 5, PHP 7, PHP 8)

strpbrk在字符串中查找一组字符的任何一个字符

说明

strpbrk(string$string, string$characters): string|false

strpbrk()string 字符串中查找 characters

参数

string

在此字符串中查找 string

characters

该参数区分大小写。

返回值

返回以找到的字符开始的子字符串。如果没有找到,则返回 false

示例

示例 #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');
?>

参见

To Top