dns_get_record 函数无法检索域详细信息

发布于 2024-12-29 17:09:58 字数 513 浏览 1 评论 0原文

我正在尝试检索我正在查找的域的域详细信息,该域是我购买的并将名称服务器指向的(已在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兮颜 2025-01-05 17:09:58

您应该稍等片刻,直到 nw 域通过您的 DNS 传播。在某些情况下,这可能需要超过 72 小时。

注意:您的主机上必须配置有效的 DN 服务器地址。尝试
使用 8.8.8.8 作为 DNS。

注意:在 Windows 上,只有当您有 PHP 5.3 或 + 时,它才有效

You should wait a bit until the nw domain will propagate through your DNS. This can, in some case, take more than 72 hours.

Note: you must have a valid DN Server address configured on your host. Try
with 8.8.8.8 as DNS.

Note: on Windows it will only works if you have PHP 5.3 or +

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文