php验证邮箱格式

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/mzg5050/article/details/102698180

代码:

/**

* return bool

**/

function is_email($email)
{
    $pattern = "/^[^_][\w]*@[\w.]+[\w]*[^_]$/";
    if(preg_match($pattern, $email, $matches)){
        return true;
    }
    return false;
}

猜你喜欢

转载自blog.csdn.net/mzg5050/article/details/102698180