标签: php regex pcre
如何在PHP中使用preg_match检查两个单词(例如' sheep'和#39; goat')?
示例:
if (!preg_match(goat|sheep)) header(' Location: / ');
谢谢!
答案 0 :(得分:0)
只需这样做:
if (!preg_match('~\b(?:goat|sheep)\b~i', $yourstring)) header('Location: /');
更多信息here和here