Home PHP How to get the Nameservers of a domain using PHP?
 
 
 

How to get the Nameservers of a domain using PHP?

PDF Print E-mail

Question: How to get the Nameservers (NS Records) of a domain using PHP?

 

Answer:

Use the  dns_get_record function with type DNS_NS

 

Example:

//Add this piece of code to your PHP will
$result = dns_get_record('yourdomain.com',DNS_NS);

Execute the script 

//An array will be returned similar as below

Array
(
[0] => Array
(
[host] => yourdomain.com
[type] => NS
[target] => ns1.yourdomain.com
[class] => IN
[ttl] => 70144
)

[1] => Array
(
[host] => yourdomain.com
[type] => NS
[target] => ns2.yourdomain.com
[class] => IN
[ttl] => 70144
)

)

Explanation:

dns_get_record = Fetch DNS Resource Records associated with a hostname (PHP 5)
DNS_NS = Getting the NS record information

 

 

 

 

Go Daddy $7.49 .com Sale!