怎么查郵箱是否存在?
在php中有這么一個函數checkdnsrr來驗證dns是否可訪問來檢測郵箱地址是否存在*/$email=abc@111cn.net;
$check_email=checkdnsrr($email,a);
if($check_email){
returntrue;}else{returnfalse;}/*
關于checkdnsrr函數詳細說明
boolcheckdnsrr(string$host[,string$type=mx])
checkdnsrr.檢查指定網址的dns記錄
if(checkdnsrr(round-robin-example.com),all)){
returntrue;}else{
returnfalse;}//buteveryvalueotherthananywillwork
if(checkdnsrr(round-robin-example.com),a)){
returnfalse;}指定的參數host可以是網絡位址(ipaddress),也可以用機器名稱(domainname)。參數type可以省略,內定值為mx。而參數type的值可為以下的其中之一:a、mx、ns、soa、ptr、cname或any。