dns_get_record 函数无法检索域详细信息
我正在尝试检索我正在查找的域的域详细信息,该域是我购买的并将名称服务器指向的(已在 72 小时前完成)。现在,当我使用 dns_get_record 函数查找我的域的详细信息时,例如,
dns_get_record('www.mydomain.com');
dns_get_record('mydomain.com');
它们都只返回一个空数组,其中没有任何项目或值,因此我清除了 DNS 缓存,但是这似乎没有解决问题。我前往 http://whois.domaintools.com/
查找在他们这边,我可以确认该域具有指向的正确名称服务器,但由于返回空数组而没有 dns_get_record 。
我尝试使用 dig
命令和 nslookup
,但在输出中看不到名称服务器。
如何在 PHP 中找到域的名称服务器?
I'm trying to retrieve domain details of a domain I'm looking up which I purchased and pointed the nameservers to (which was done more than 72 hours ago). Now, when I'm using the dns_get_record
function to look up the details of my domain, e.g.
dns_get_record('www.mydomain.com');
dns_get_record('mydomain.com');
They both just return an empty array with no items or values in it, so I cleared my DNS cache, but this didn't seem to solve the problem. I went to http://whois.domaintools.com/
to look up on their side, I can confirm the domain has the correct nameservers pointed to, but not dns_get_record
since returning an empty array.
I tried using the dig
command and nslookup
, I cannot see the nameservers in the output.
How can I find the nameservers of a domain in PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该稍等片刻,直到 nw 域通过您的 DNS 传播。在某些情况下,这可能需要超过 72 小时。
You should wait a bit until the nw domain will propagate through your DNS. This can, in some case, take more than 72 hours.