Network 函数
在线手册:中文  英文

checkdnsrr

(PHP 4, PHP 5)

checkdnsrrCheck DNS records corresponding to a given Internet host name or IP address

说明

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

Searches DNS for records of type type corresponding to host.

参数

host

host may either be the IP address in dotted-quad notation or the host name.

type

type may be any one of: A, MX, NS, SOA, PTR, CNAME, AAAA, A6, SRV, NAPTR, TXT or ANY.

返回值

Returns TRUE if any records are found; returns FALSE if no records were found or if an error occurred.

更新日志

版本 说明
5.3.0 This function is now available on Windows platforms.
5.2.4 TXT type was added.
5.0.0 AAAA type was added.

注释

Note:

For compatibility with Windows before this was implemented, then try the » PEAR class » Net_DNS.

参见


Network 函数
在线手册:中文  英文

用户评论:

diogo-nechtan at tagon8inc dot com (2012-06-12 12:48:27)

Validating email correctly. [with optional DNS MX entry check]

Based on the native function, extracted from the source code in C.
/[svn]/php/php-src/trunk/ext/filter/logical_filters.c | Revision 321634 
http://svn.php.net/viewvc/php/php-src/trunk/ext/filter/logical_filters.c?revision=321634&view=markup

I'm using this validation on the Tagon8 platform, applying directly to the webapp that filters e-mails are valid for mail-lists.

<?php
function isValidEmail($email$checkDNS false)
{

    
$valid = (
            
/* Preference for native version of function */
            
function_exists('filter_var') and filter_var($emailFILTER_VALIDATE_EMAIL)
            ) || (
                
/* The maximum length of an e-mail address is 320 octets, per RFC 2821. */
                
strlen($email) <= 320 
                
/*
                 * The regex below is based on a regex by Michael Rushton.
                 * However, it is not identical. I changed it to only consider routeable
                 * addresses as valid. Michael's regex considers a@b a valid address
                 * which conflicts with section 2.3.5 of RFC 5321 which states that:
                 *
                 * Only resolvable, fully-qualified domain names (FQDNs) are permitted
                 * when domain names are used in SMTP. In other words, names that can
                 * be resolved to MX RRs or address (i.e., A or AAAA) RRs (as discussed
                 * in Section 5) are permitted, as are CNAME RRs whose targets can be
                 * resolved, in turn, to MX or address RRs. Local nicknames or
                 * unqualified names MUST NOT be used.
                 *
                 * This regex does not handle comments and folding whitespace. While
                 * this is technically valid in an email address, these parts aren't
                 * actually part of the address itself.
                 */
                
and preg_match_all(
                    
'/^(?!(?:(?:\\x22?\\x5C[\\x00-\\x7E]\\x22?)|(?:\\x22?[^\\x5C\\x22]\\x22?))'
                    
'{255,})(?!(?:(?:\\x22?\\x5C[\\x00-\\x7E]\\x22?)|(?:\\x22?[^\\x5C\\x22]\\x22?))'.
                    
'{65,}@)(?:(?:[\\x21\\x23-\\x27\\x2A\\x2B\\x2D\\x2F-\\x39\\x3D\\x3F\\x5E-\\x7E]+)|'.
                    
'(?:\\x22(?:[\\x01-\\x08\\x0B\\x0C\\x0E-\\x1F\\x21\\x23-\\x5B\\x5D-\\x7F]|(?:\\x5C[\\x00-\\x7F]))*\\x22))'.
                    
'(?:\\.(?:(?:[\\x21\\x23-\\x27\\x2A\\x2B\\x2D\\x2F-\\x39\\x3D\\x3F\\x5E-\\x7E]+)|'.
                    
'(?:\\x22(?:[\\x01-\\x08\\x0B\\x0C\\x0E-\\x1F\\x21\\x23-\\x5B\\x5D-\\x7F]|'.
                    
'(?:\\x5C[\\x00-\\x7F]))*\\x22)))*@(?:(?:(?!.*[^.]{64,})'.
                    
'(?:(?:(?:xn--)?[a-z0-9]+(?:-+[a-z0-9]+)*\\.){1,126})'.'{1,}'.
                    
'(?:(?:[a-z][a-z0-9]*)|(?:(?:xn--)[a-z0-9]+))(?:-+[a-z0-9]+)*)|'.
                    
'(?:\\[(?:(?:IPv6:(?:(?:[a-f0-9]{1,4}(?::[a-f0-9]{1,4}){7})|'.
                    
'(?:(?!(?:.*[a-f0-9][:\\]]){7,})(?:[a-f0-9]{1,4}(?::[a-f0-9]{1,4}){0,5})?::'.
                    
'(?:[a-f0-9]{1,4}(?::[a-f0-9]{1,4}){0,5})?)))|'.
                    
'(?:(?:IPv6:(?:(?:[a-f0-9]{1,4}(?::[a-f0-9]{1,4}){5}:)|'.
                    
'(?:(?!(?:.*[a-f0-9]:){5,})'.'(?:[a-f0-9]{1,4}(?::[a-f0-9]{1,4}){0,3})?::'.
                    
'(?:[a-f0-9]{1,4}(?::[a-f0-9]{1,4}){0,3}:)?)))?(?:(?:25[0-5])|'.
                    
'(?:2[0-4][0-9])|(?:1[0-9]{2})|(?:[1-9]?[0-9]))(?:\\.(?:(?:25[0-5])|'.
                    
'(?:2[0-4][0-9])|(?:1[0-9]{2})|(?:[1-9]?[0-9]))){3}))\\]))$/iD',
                    
$email)
            );
    
    if( 
$valid )
    {
        if( 
$checkDNS && ($domain end(explode('@',$email2))) )
        {
            
/*
            Note:
            Adding the dot enforces the root.
            The dot is sometimes necessary if you are searching for a fully qualified domain
            which has the same name as a host on your local domain.
            Of course the dot does not alter results that were OK anyway.
            */
            
return checkdnsrr($domain '.''MX');
        }
        return 
true;
    }
    return 
false;
}

var_dump(isValidEmail('nechtan@tagon8inc.com'true));
// bool(true)
?>

Ashus (2012-04-19 10:50:22)

Beware, if you're using AppArmor to protect your server from apache2-php, this function does not work if you fail to add an exception to read the file /etc/resolv.conf. However in older versions of php, this function worked well without this.
No error is reported, just the function always returns false.

Jamie Savard (2011-05-05 06:59:41)

If you're using Google or other OpenDNS type name servers as resolvers with this function and popular DNSBL's, such as Spamhaus.org, the checks will fail. All tests we've performed seem to indicate that Google's OpenDNS drops DNSBL lookups.
For details: http://www.spamhaus.org/faq/answers.lasso?section=DNSBL%20Usage#261
This is most likely intentional since DNSBL lookups would increase the DNS load quite a bit.

Anonymous (2009-07-15 09:07:27)

It appears that if you're checking DNS records for a host that uses a Round-Robin DNS technique for load distribution, then you cannot use this function with the "type" parameter set to "ANY".

<?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;
}

?>

developer at sysco dot ch (2007-05-15 09:05:09)

Here is a simple and fully compatible implementation of checkdnsrr() for Windows.
If you include these lines at the beginning of your code, you do not need to change anything else in the code in order to work!
if(!function_exists('checkdnsrr'))
{
function checkdnsrr($hostName, $recType = '')
{
if(!empty($hostName)) {
if( $recType == '' ) $recType = "MX";
exec("nslookup -type=$recType $hostName", $result);
// check each line to find the one that starts with the host
// name. If it exists then the function succeeded.
foreach ($result as $line) {
if(eregi("^$hostName",$line)) {
return true;
}
}
// otherwise there was no mail handler for the domain
return false;
}
return false;
}
}

reportingsjr at gmail dot com (2007-04-27 18:05:43)

Here is a modification to the note below:
function check_email($email) {
if(preg_match('/^\w[-.\w]*@(\w[-._\w]*\.[a-zA-Z]{2,}.*)$/', $email, $matches))
{
if(function_exists('checkdnsrr'))
{
if(checkdnsrr($matches[1] . '.', 'MX')) return true;
if(checkdnsrr($matches[1] . '.', 'A')) return true;
}else{
if(!empty($hostName))
{
if( $recType == '' ) $recType = "MX";
exec("nslookup -type=$recType $hostName", $result);
foreach ($result as $line)
{
if(eregi("^$hostName",$line))
{
return true;
}
}
return false;
}
return false;
}
}
return false;
}
This makes it compatible with windows and will make sure it actually checks the domain.

Check DNSBL - WIN also (2007-01-11 16:41:09)

<?php
/*
* Check DNSBL - WIN also - DD
*/
function blacklisted($ip) {
    
$dnsbl_lists = array("bl.spamcop.net""list.dsbl.org""sbl.spamhaus.org");
    if (
$ip && preg_match('/^([0-9]{1, 3})\.([0-9]{1, 3})\.([0-9]{1, 3})\.([0-9]{1, 3})/'$ip)) {
        
$reverse_ip implode("."array_reverse(explode("."$ip))); 
        
$on_win substr(PHP_OS03) == "WIN" 0;
        foreach (
$dnsbl_lists as $dnsbl_list){
            if (
function_exists("checkdnsrr")) {
                if (
checkdnsrr($reverse_ip "." $dnsbl_list ".""A")) {
                    return 
$reverse_ip "." $dnsbl_list;
                } 
            } else if (
$on_win == 1) {
                
$lookup "";
                @
exec("nslookup -type=A " $reverse_ip "." $dnsbl_list "."$lookup);
                foreach (
$lookup as $line) {
                    if (
strstr($line$dnsbl_list)) {
                        return 
$reverse_ip "." $dnsbl_list;
                    }
                }
            } 
        }
    }
    return 
false;
}
?>

(2006-12-11 16:06:52)

<?php
function check_dnsbl($ip)
{
    
$dnsbl_check=array("bl.spamcop.net","list.dsbl.org",
"sbl.spamhaus.org",'xbl.spamhaus.org');
    if(
$ip){
        
$rip=implode('.',array_reverse(explode(".",$ip))); 
        foreach(
$dnsbl_check as $val){
            if(
checkdnsrr($rip.'.'.$val.'.','A'))
                return 
$rip.'.'.$val;
        }
    }
    return 
false;
}
?>

satmd (2006-01-28 08:29:35)

fox dot 69 at gmx dot net: I wonder where you got this code from. I have written this piece of code half a year ago and released it WITH a copyright header that is missing now! Anyways... this code is to be considered licenced "as-is", however it'd be nice to keep the authors note (This is something about reputation, you see?). Thanks.

(Much) more recent version of it:
<?php
function is_blacklisted($ip) {
   
// written by satmd, do what you want with it, but keep the author please
   
$result=Array();
   
$dnsbl_check=array("bl.spamcop.net",
                       
"list.dsbl.org",
                       
"sbl.spamhaus.org");
   if (
$ip) {
       
$quads=explode(".",$ip);
       
$rip=$quads[3].".".$quads[2].".".$quads[1].".".$quads[0];
       for (
$i=0$i<count($dnsbl_check); $i++) {
           if (
checkdnsrr($rip.".".$dnsbl_check[$i].".","A")) {
              
$result[]=Array($dnsbl_check[$i],$rip.".".$dnsbl_check[$i]);
           }
         }
      return 
$result;
   }
}
?>

Beware that this code's signature differs from the original! I also removed osirusoft as its results are not useful anyways (false positives!). Please make sure that you have nscd or a caching dns server running as this code is prone to (d)dos! Only use it in places where it is necessary (when data is to be modified), e.g. the script processing uploads/posts/replies in a blog.

tabascopete78 at yahoo dot com (2005-08-18 00:30:56)

I was using file_get_contents on a set of URLs. Some of them URLs were invalid (the structure of it was ok but the DNS hosts couldn't resolve them) and I kept getting an annoying warning that I wanted to handle correctly. I wanted to check the DNS somehow but the existing check dns function in php doesn't have one for windows and the one a person supplied here does not work 100% of the time. (The reg exp is wrong.)
Instead use gethostbyname to try to resolve a host. This won't throw any warnings, you just need to check the output and it's all handled gracefully. You'll get the same warnings with fopen and fsockopen.
The only minor drawback is that on invalid hosts it takes a couple seconds to figure it out.

Plasma (2005-06-18 01:43:13)

In response to fox dot 69 at gmx dot net's dnsbl function:

<?php
function is_blacklisted($ip) {
   
$dnsbl_check=array("bl.spamcop.net",
                       
"relays.osirusoft.com",
                       
"list.dsbl.org",
                       
"sbl.spamhaus.org");
   if (
$ip) {
       
$quads=explode(".",$ip);
       
$rip=$quads[3].".".$quads[2].".".$quads[1].".".$quads[0];
       for (
$i=0$i<count($dnsbl_check); $i++) {
           if (
checkdnsrr($rip.".".$dnsbl_check[$i] . '.',"A")) {
               
$listed.=$dnsbl_check[$i]." ";
           }
         }
       if (
$listed) { return $listed; } else { return FALSE; }
   }
}
?>

Add a . after the $dnsbl_check[$i] so that it returns a valid response, I found this was not working (always returned the A record) when I didnt specify the . at the end:

           if (checkdnsrr($rip.".".$dnsbl_check[$i] . '.',"A")) {

Sven (2005-02-07 05:46:47)

Note to Patrick's regular expression (from 14-Dec-2004):
Don't use it as it will not recognize every valid email address, because valid domain names do not pass the regex.
For example: test--domain.com is a perfectly valid domain, but won't be recognized as such.
If you have to use a regular expression as a first filter, then either use the complete complex form based on RFC2822, or stick to the most basic regex like this:
".+@.+\..+."
Explanation: The username in front of the @ can include every known character in the world - it has to be escaped somehow, but dealing with this is a mess.
The shortest possible domain name is 1 character long, not 2 or 3 (although many registries impose such arbitrary rules on domain names). Try www.x.org if you don't believe this. :)
Only the top level domain consists of at least 2 characters (country code tld), but there should be no upper limit. Many had to learn the hard way as .info became available. And .museum. Maybe there will be .solarsystem someday.
So the shortest possible email address consists of 6 characters: "a@b.cd".
I do not use more specific character classes for the domain names because we have international domain names, which opens up the whole unicode range as valid characters. Converting these into useable dns domain names is a different task, best left to appropriate librarys such as PEAR's Net_IDNA.
Rule of thumb: Don't assume too much. If a string doesn't contain an "@"-sign and a dot after that, then it surely is no email address, and no further checking needs to take place. Everything else should go one step further.

Patrick (2004-12-13 19:53:47)

This is a little code example that will validate an email address in two ways:
- first the general syntax of the string is checked with a regular expression
- then the domain substring (after the '@') is checked using the 'checkdnsrr' function

<?php

function validate_email($email){

   
$exp "^[a-z\'0-9]+([._-][a-z\'0-9]+)*@([a-z0-9]+([._-][a-z0-9]+))+$";

   if(
eregi($exp,$email)){

      if(
checkdnsrr(array_pop(explode("@",$email)),"MX")){
        return 
true;
      }else{
        return 
false;
      }

   }else{

      return 
false;

   }    
}

?>

dave146 at burtonsys dot com (2004-06-20 23:46:01)

The .museum TLD is weird. All undefined second-level domains resolve to 195.7.77.20 (a/k/a index.museum). So checkdnsrr() doesn't tell you anything at all about second-level domains under .museum.
-Dave
Editors note:
This applies to all TLDs that have a wildcard covering all non-existant domains. This may at some point in the future include .com or .net and does already cover other domains. If you are unsure just try a couple of random domains that can't possibly exist. If they both resolve to the same IP address and checkdnserr() returns false, you may have to check the IP.

picaune at hotmail dot com (2004-01-31 18:58:33)

On Windows NT machines (inc. 2000, XP, 2003, .net, Longhorn) you can emulate this function by spoonfeeding the nslookup proglet.
After spitting out some info on which DNS server it's using, the daemon presents a "> " prompt. At this point if you enter a domain name a list of A records will be returned from the default name server. The sixth line of output has "Address: " followed by the IPv4 address in dotted-quad notation. You may enter "set type=" followed by the IP type. Currently the only supported IP class is IN (Internet); the others are no longer supported. You can exit by entering "exit".
You may perform a one-shot lookup by passing the domain name as a command line argument; in this case nslookup will automatically perform an A lookup on the default name server and exit. The IPv4 address is on the last line with non-whitespace.
Additional information and options can be obtained by running nslookup and then searching for "?".

fox dot 69 at gmx dot net (2003-05-01 13:40:40)

maybe usefull, a blacklist (DNSBL) check function:

<?php
function is_blacklisted($ip) {
    
$dnsbl_check=array("bl.spamcop.net",
                       
"relays.osirusoft.com",
                       
"list.dsbl.org",
                       
"sbl.spamhaus.org");
    if (
$ip) {
       
$quads=explode(".",$ip);
        
$rip=$quads[3].".".$quads[2].".".$quads[1].".".$quads[0];
        for (
$i=0$i<count($dnsbl_check); $i++) {
            if (
checkdnsrr($rip.".".$dnsbl_check[$i],"A")) {
                
$listed.=$dnsbl_check[$i]." ";
            }
         }
       if (
$listed) { return $listed; } else { return FALSE; }
    }
}
?>

kriek at jonkriek dot com (2003-03-25 17:08:36)

The checkdnsrr function is not implemented on the Windows platform. The way to get around this problem is to write your own version of checkdnsrr. Example: myCheckDNSRR

<?php
function myCheckDNSRR($hostName$recType ''

 if(!empty(
$hostName)) { 
   if( 
$recType == '' $recType "MX"
   
exec("nslookup -type=$recType $hostName"$result); 
   
// check each line to find the one that starts with the host 
   // name. If it exists then the function succeeded. 
   
foreach ($result as $line) { 
     if(
eregi("^$hostName",$line)) { 
       return 
true
     } 
   } 
   
// otherwise there was no mail handler for the domain 
   
return false
 } 
 return 
false
}
?>
Note that the type parameter is optional, and if you don't supply it then the type defaults to "MX" (which means Mail Exchange). If any records are found, the function returns TRUE. Otherwise, it returns FALSE.

alex at xela dot co dot uk (2002-03-01 05:36:09)

Hi,

Interesting thing I've discovered regarding checkdnsrr. When querying a domain's status using the command, always append a dot to the end of the domain you are querying. I.e.

<?php
checkdnsrr
($domain.'.')
?>

The dot is sometimes necessary if you are searching for a fully qualified domain which has the same name as a host on your local domain.. ie :-

You want to search for "our.info"
and you happen to have a node on your domain called :

our.info.ourdomain.com

If your DNS server is told to check 'ourdomain.com' before any other you will get a positive result when in fact our.info might not exist.

For this reason adding the dot enforces the root. Of course the dot does not alter results that were OK anyway.

Hope that helps some poor confused people :o)

Alex.

易百教程