Checkdnssrr function in PHP

We can check our DNS record to verify the existence of a domain name or not. We can see if plus2net.com is there in DNS record by using checkdnsrr function. This function returns True if available and returns False if not available.

The type can be A, MX, NS, PTR,SOA, AAAA, CNAME, SRV,A6 NAPTR, TXT or ANY

This function may not work properly in Windows platform ( Older than PHP 5.3 ).

Here is the simple code to check DNS records.
$domain="plus2net.com";
if(!checkdnsrr($domain,'MX')) {
echo "Not there ";
}else {
echo " It is there ";
}

MX record : getmxrr()

We can get details of mail exchanger record ( MX record ) by using getmxrr() function.
getmxrr(hostname, array $result, array $weight)
If returns True of False based on the information found. Output is stored in $result as array.
It takes optional parameter weight

Here is an example.
$domain='example.com';
if(getmxrr($domain,$mx_details)){
foreach($mx_details as $key=>$value){
echo "$key => $value <br>";
}
}

Example 1: Checking MX Records for a Domain

<?php
$domain = "plus2net.com";
if (!checkdnsrr($domain, 'MX')) {
    echo "Domain does not exist.";
} else {
    echo "Domain exists.";
}
?>

IP address and Geo Location of visitor Storing visitor details in MySQL table
Subhendu Mohapatra — author at plus2net
Subhendu Mohapatra

Author

🎥 Join me live on YouTube

Passionate about coding and teaching, I publish practical tutorials on PHP, Python, JavaScript, SQL, and web development. My goal is to make learning simple, engaging, and project‑oriented with real examples and source code.



Subscribe to our YouTube Channel here



plus2net.com











PHP video Tutorials
We use cookies to improve your browsing experience. . Learn more
HTML MySQL PHP JavaScript ASP Photoshop Articles Contact us
©2000-2025   plus2net.com   All rights reserved worldwide Privacy Policy Disclaimer