风故故,也依依

Stand still in the wind.

导航

php验证email拼写的正确性

function is_email($email) {
        $exp = "^[a-z'0-9]+([._-][a-z'0-9]+)*@([a-z0-9]+([._-][a-z0-9]+))+$";
        if(eregi($exp,$email)) {
            return true;
        }
        return false;
 }


posted on 2011-08-22 19:37  jadmin  阅读(143)  评论(0编辑  收藏  举报