时间:2021-07-01 10:21:17 帮助过:2人阅读
代码如下:
function whois_hichina($domain) {
preg_match("|
(.+?)|is", @file_get_contents('http://whois.hichina.com/cgi-bin/whois?domain='.$domain.''), $whois);
代码如下:
function whois_xinnet($domain) {
preg_match("|(.+?)|is", @file_get_contents('http://www.xinnet.cn/Modules/agent/serv/pages/domain_whois.jsp?domainNameWhois='.$domain.'&noCode=noCode'), $whois);
return $whois[0];
}
}
以上就介绍了whois PHP实现域名whois查询的代码数据源万网、新网,包括了whois方面的内容,希望对PHP教程有兴趣的朋友有所帮助。