|
|
Checkdnssrr function in PHPWe 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 ";
}
|
| |
| |
|
|
|
|
|