在php中有这么一个函数checkdnsrr来验证dns是否可访问来检测邮箱地址是否存在
*/
代码如下 | 复制代码 |
$email ="abc@111cn.net"; $check_email = checkdnsrr($email,"a"); if($check_email) { return true; } else { return false; } |
/*
关于checkdnsrr函数详细说明
bool checkdnsrr ( string $host [, string $type = "mx" ] )
checkdnsrr. 检查指定网址的dns 记录
<?php
代码如下 | 复制代码 |
//this will not work if(checkdnsrr("round-robin-example.com"),"all")){ return true; }else{ return false; } //but every value other than "any" will work |
指定的参数 host 可以是网络位址 (ip address),也可以用机器名称 (domain name)。参数 type 可以省略,内定值为 mx。而参数 type 的值可为以下的其中之一:a、mx、ns、soa、ptr、cname 或 any。若找到了指定网址的 dns 字段,返回 true;若未找到指定的 dns 字段或是有错误均会返回 false。
时间: 2024-10-01 15:11:57