dt56449492 2012-09-11 10:02
浏览 28
已采纳

使用PHP检索给定域的名称服务器

I am trying to retrieve the name servers of a given domain, preferably in PHP.

I've tried a number of approaches but am unable to get any decent/consistent results and was wondering if anyone knew of a function or class that might help me achieve this?

For example, this whois class has some success, but fails to retireve the name server from dot com TLDs.

I was thinking that I could perhaps use Google's DNS server 8.8.8.8 in some way perhaps, but am unsure how?

Any pointers would be much appreciated.

  • 写回答

3条回答 默认 最新

  • dp20011 2012-09-11 10:21
    关注

    The answer is this function:

    http://www.php.net/manual/en/function.dns-get-record.php

    $result = dns_get_record("stackoverflow.com");
    var_dump($result);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?