php检测邮箱地址是否存在

在php中有这么一个函数checkdnsrr来验证dns是否可访问来检测邮箱地址是否存在,php实例代码如下:

  1. $email ="abc@phpfensi.com";
  2. $check_email = checkdnsrr($email,"a");
  3. if($check_email) {
  4. return true;
  5. } else {
  6. return false;
  7. }

关于checkdnsrr函数详细说明:

bool checkdnsrr(string $host[,string $type = "mx"])

checkdnsrr.检查指定网址的dns记录.

PHP实例代码如下:

  1. //this will not work
  2. if(checkdnsrr("round-robin-example.com"),"all")){
  3. return true;
  4. }else{
  5. return false;
  6. }
  7. //but every value other than "any" will work
  8. if(checkdnsrr("round-robin-example.com"),"a")){
  9. return true;
  10. }else{
  11. return false;
  12. }

指定的参数 host 可以是网络位址(ip address),也可以用机器名称(domain name),参数 type 可以省略,内定值为 mx,而参数 type 的值可为以下的其中之一:a、mx、ns、soa、ptr、cname 或 any,若找到了指定网址的 dns 字段,返回 true;若未找到指定的 dns 字段或是有错误均会返回 false.