最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

php检测邮箱地址是否存在

时间:2014-06-09 16:40来源: 作者: 点击:
在php中有这么一个函数checkdnsrr来验证dns是否可访问来检测邮箱地址是否存在,php实例代码如下: $email = abc@vcphp.com ; $check_email = checkdnsrr ( $email , a ); if ( $check_email ){ return true; } else { return false; } 关

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

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

关于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. //but every value other than "any" will work 
  7. if(checkdnsrr("round-robin-example.com"),"a")){ 
  8.      return true; 
  9. }else
  10.      return false; 

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

(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容