码迷,mamicode.com
首页 > 其他好文 > 详细

ecshop检验邮件是否合法

时间:2015-05-03 14:34:09      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

<?php
/**
 * 验证输入的邮件地址是否合法
 *
 * @access  public
 * @param   string      $email      需要验证的邮件地址
 *
 * @return bool
 */
function is_email($user_email)
{
    $chars = "/^([a-z0-9+_]|\\-|\\.)+@(([a-z0-9_]|\\-)+\\.)+[a-z]{2,6}\$/i";
    if (strpos($user_email, ‘@‘) !== false && strpos($user_email, ‘.‘) !== false)
    {
        if (preg_match($chars, $user_email))
        {
            return true;
        }
        else
        {
            return false;
        }
    }
    else
    {
        return false;
    }
}
?>

 

ecshop检验邮件是否合法

标签:

原文地址:http://www.cnblogs.com/lizhaoyao/p/4473972.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!