3

我想验证电子邮件域,但我不想担心可能出现的任何子域。

例如:

@abc.com
@a.abc.com
@b.abc.com
...

这些都应该是有效的。

另外,我有一个要验证的域列表,例如 abc.com、xyz.com ... 从列表中验证电子邮件域(包括子域)的最佳方法是什么?

谢谢。

4

6 回答 6

4

我决定将其重写为更友好,这样您就不会限制您将哪种类型的域方案列入白名单。

$whitelist = array("abc.com", "xyz.com", "specific.subdomain.com", "really.specific.subdomain.com"); //You can add basically whatever you want here because it checks for one of these strings to be at the end of the $email string.
$email = "@d.xyz.com";

function validateEmailDomain($email, $domains) {
    foreach ($domains as $domain) {
        $pos = strpos($email, $domain, strlen($email) - strlen($domain));

        if ($pos === false)
            continue;

        if ($pos == 0 || $email[(int) $pos - 1] == "@" || $email[(int) $pos - 1] == ".")
            return true;
    }

    return false;
}

所以,你会这样使用:

if (validateEmailDomain($email, $whitelist))
    //Do something.
于 2013-02-26T20:29:43.860 回答
4

您还可以使用 dns 验证域:

function validEmail($email)
{
    $allowedDomains = array('abc.com');
    list($user, $domain) = explode('@', $email);
    if (checkdnsrr($domain, 'MX') && in_array($domain, $allowedDomains))
    {
        return true;
    }
    return false;
}
于 2013-02-26T20:33:48.430 回答
1

我不久前写了这个函数。它可能满足您正在寻找的要求。它做了两件事,验证电子邮件地址是有效地址,然后根据 DNS 中的 MX 记录验证域名是否是有效名称。

function validate_email($email) {
    // Check email syntax
    if(preg_match('/^([a-zA-Z0-9\._\+-]+)\@((\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,7}|[0-9]{1,3})(\]?))$/', $email, $matches)) {
        $user = $matches[1];
        $domain = $matches[2];

        // Check availability of DNS MX records
        if(getmxrr($domain, $mxhosts, $mxweight)) {
            for($i=0;$i<count($mxhosts);$i++){
                $mxs[$mxhosts[$i]] = $mxweight[$i];
            }

            // Sort the records
            asort($mxs);
            $mailers = array_keys($mxs);
        } elseif(checkdnsrr($domain, 'A')) {
            $mailers[0] = gethostbyname($domain);
        } else {
            $mailers = array();
        }
        $total = count($mailers);

        // Added to still catch domains with no MX records
        if($total == 0 || !$total) {
            $error = "No MX record found for the domain.";
        }
    } else {
        $error = "Address syntax not correct.";
    }

    return ($error ? $error : TRUE);
}
于 2013-02-26T20:27:41.367 回答
1

我写了一个简单的正则表达式示例,能够检查域列表。

    <?php

    $email = 'shagtv@a.xyz.com';

    $domains = array('abc.com', 'xyz.com');

    $pattern = "/^[a-z0-9._%+-]+@[a-z0-9.-]*(" . implode('|', $domains) . ")$/i";

    if (preg_match($pattern, $email)) {
        echo 'valid';
    } else {
        echo 'not valid';
    }
    ?>
于 2013-02-26T20:38:33.077 回答
0

那么你应该使用一些这样的代码:

<?php
$subject = "abcdef";
$pattern = '/^def/';
preg_match($pattern, substr($subject,3), $matches, PREG_OFFSET_CAPTURE);
print_r($matches);
?>

或这个:

<?php
$email = "someone@exa mple.com";

if(!filter_var($email, FILTER_VALIDATE_EMAIL))
  {
  echo "E-mail is not valid";
  }
else
  {
      echo "E-mail is valid";
  }
?>

或者您必须对此页面进行一些修改

希望能帮助到你!

于 2013-02-26T20:27:12.670 回答
0

与这篇文章非常相似:PHP Check domain of email being registered is a 'school.edu' address

但是,您需要更进一步。完成拆分后,查看 parse_url http://php.net/manual/en/function.parse-url.php并获取 HOST 部分。

于 2013-02-26T20:31:34.380 回答