如何使用preg_match()代替eregi()?

时间:2014-11-18 17:58:48

标签: php

我是一个php初学者,我想在下面的代码中使用preg_match()来代替eregi(),但我不知道如何做到这一点。

if (!eregi(“^[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,4}$”, trim($_POST['email']))) {

我只是将eregi替换为preg_match,但我得到了php错误" PHP警告:preg_match():找不到结束分隔符'^'"

我该如何解决?

非常感谢!

0 个答案:

没有答案