0

如何在 PHP 中使用 preg_match 检查两个单词(例如“sheep”和“goat”)?

例子:

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

谢谢!

4

1 回答 1

0

只需这样做:

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

更多信息在这里这里

于 2013-05-09T20:58:57.157 回答