📅  最后修改于: 2023-12-03 15:33:35.222000             🧑  作者: Mango
strpbrk()
函数用于在字符串中搜索指定字符集合中的任何字符,并返回从该字符集合中找到的第一个字符开始的子字符串。该函数不如preg_match()
和strstr()
函数强大,但可以作为简单的字符串操作函数使用。
string strpbrk ( string $haystack , string $char_list )
$haystack
:必需,搜索的字符串。$char_list
:必需,搜索的字符集合。如果在 $haystack
中找到了 $char_list
中的任一字符,则返回从该字符开始的字符串,否则返回 FALSE
。
<?php
$testString = "Hello World!";
$characterList = "Wo";
$result = strpbrk($testString, $characterList);
echo $result; // 输出 World!
?>
$testString
变量的值为 "Hello World!"
,并将 $characterList
变量的值设置为 "Wo"
。strpbrk()
函数,将 $testString
和 $characterList
作为参数传入。World!
,因为在 $testString
中找到了 $characterList
中的字符 W
。