stristr 函数在 PHP 中用于在字符串中查找首次出现的子字符串
stristr
如果你想要返回全部匹配,可以使用 preg_match_all 函数配合正则表达式。下面是一个示例:
preg_match_all
$string = "这是一个测试字符串,包含多个匹配项。"; $pattern = "/匹配项/"; preg_match_all($pattern, $string, $matches); print_r($matches[0]);
在这个示例中,$matches 数组将包含所有匹配的子字符串。
$matches