-1

我想在其中运行以下内容regexPHP但遇到了以下错误:

preg_match() [function.preg-match]:没有结束分隔符'^'

我的代码:

if (preg_match("^(?!.*(l_name|f_name|m_name)).*$", $str)) {
   // Do sth 
}

有任何想法吗?

4

1 回答 1

3

Try

if (preg_match("/^(?!.*(l_name|f_name|m_name)).*$/", $str)) {
   // Do sth    ^                                ^
}
于 2013-07-09T09:32:59.710 回答