如何用PHP中的preg_match检查两个单词('goat'和'sheep')?

时间:2013-05-09 20:57:21

标签: php regex pcre

如何在PHP中使用preg_match检查两个单词(例如' sheep'和#39; goat')?

示例:

if (!preg_match(goat|sheep)) header(' Location: / ');

谢谢!

1 个答案:

答案 0 :(得分:0)

只需这样做:

if (!preg_match('~\b(?:goat|sheep)\b~i', $yourstring)) header('Location: /');

更多信息herehere