如何检查域名列表中是否有站点?
我有 abcde.com 形式的大量域名列表,
我要做的就是检查域是否有页面,否则我会收到服务器未找到消息。
什么代码可以自动检查这一点并在有网站时向我返回一些内容?我对 PHP 很熟悉。
谢谢。
I have a huge list of domain names in the form of abcde.com
What I have to do is to check if the domains have a page otherwise I get the server not found message.
What is a code that will check this automatically and return me something if there is a site ? I am familiar with PHP.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简单的事情是:
如果您将它们放在 txt 文件中,并且每一行都包含域名,您可以执行以下操作:
Something simple would be:
If you have them in a txt file, with each line containing the domain name you could do this:
您可以使用 cURL 连接到每个域/主机名。
例子:
You can connect to each domain/hostname using cURL.
Example: