📜  PHP | strpbrk()函数(1)

📅  最后修改于: 2023-12-03 15:33:35.222000             🧑  作者: Mango

PHP | strpbrk()函数

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