php检测邮箱地址是否存在
在php中有这么一个函数checkdnsrr来验证dns是否可访问来检测邮箱地址是否存在,php实例代码如下:
- $email ="abc@phpfensi.com";
- $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
- if(checkdnsrr("round-robin-example.com"),"a")){
- return true;
- }else{
- return false;
- }
指定的参数 host 可以是网络位址(ip address),也可以用机器名称(domain name),参数 type 可以省略,内定值为 mx,而参数 type 的值可为以下的其中之一:a、mx、ns、soa、ptr、cname 或 any,若找到了指定网址的 dns 字段,返回 true;若未找到指定的 dns 字段或是有错误均会返回 false.