使用 PHP 进行正则表达式样式 Whois 查找
我最近发现自己在工作中需要创建模式匹配域名搜索。 (即,mydomain* 应匹配 mydomain1、mydomainanotherone 等)我的平台基于 Linux (CentOS 5),带有 Apache 2 和 PHP。 我还安装了 Pear whois 库(除非必须,否则不想使用 exec("whois ~~") 样式)。 经过一番搜索后,我发现其他一些网站提供基于域名的模式搜索,但是,从我可用的开源工具来看,似乎没有明显的候选人适合这项工作。
任何建议将不胜感激。
I am recently finding myself in a situation at work where I am expected to create a pattern matching domain name search. (ie., mydomain* should match mydomain1,mydomainanotherone etc. etc.) My platform is Linux based (CentOS 5) with Apache 2 and PHP. I also have the Pear whois library installed (dont want to use the exec("whois ~~") style unless I have to). After searching a bit I have find some other sites which offer pattern based searches on domain names, however, from the opensource tools I have available there doesn't seem to be an obvious canditate for the job.
Any suggestions would be much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大多数 whois 服务器会将您每天或每小时的请求数量限制为上限。 因此,除非您可以访问不受限制的 whois 提供商,否则按需执行此操作将很棘手。 想不出一个。
Most whois servers will cap you at a number of requests per day or per hour. So doing this on demand will be tricky unless you have access to an unrestricted whois provider. Can't think of one.