strpbrk()
函數在 PHP 中用于搜索字符串中指定集合的任何字符的首次出現。但是,此函數不支持正則表達式。如果你需要使用正則表達式來搜索字符串,可以考慮使用 preg_match()
或其他相關的正則表達式函數。
例如,使用 preg_match()
函數:
$string = 'Hello, world!';
$pattern = '/[a-z]/'; // 匹配任何小寫字母
if (preg_match($pattern, $string, $matches)) {
echo "Found a match: " . $matches[0];
} else {
echo "No match found";
}
上面的代碼會輸出 “Found a match: e”(因為它找到了第一個小寫字母 “e”)。