Jquery中文网 www.jquerycn.cn
Jquery中文网 >  脚本编程  >  php  >  正文 域名whois查询函数(万网和新网

域名whois查询函数(万网和新网

发布时间:2016-10-27   编辑:www.jquerycn.cn
jquery中文网为您提供域名whois查询函数(万网和新网等资源,欢迎您收藏本站,我们将为您提供最新的域名whois查询函数(万网和新网资源

function whois_hichina($domain) {
preg_match("|<pre>(. ?)</pre>|is", @file_get_contents('http://whois.hichina.com/cgi-bin/whois?domain='.$domain.''), $whois);

$whois[0] = str_replace('友情提示:按注册局要求,过期域名可能会处于注册商自动续费期阶段,您在此查询所看到的域名到期日仅供参考<br />请您<a href="http://www.net.cn/has_client/userlogon/user_logon1.asp教程" target="_blank" class="link_gl">进入会员区</a>查看该域名的实际到期时间,并请及时进行续费,谢谢!', '', ($whois[0]));//过滤掉此段文字


return $whois[0]);

}

//新网 whois (非新网提供,只是根据新网自身网站的url修改实现)
function whois_xinnet($domain) {
preg_match("|<div class="lytableinfowrap">(. ?)</div>|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 IP Whois查询的实现代码
PHP whois客户端查询的实现代码
用PHP实现标准的IPWhois查询
c# 域名whois查询的实现代码
php 实现dns域名查询的方法详解(图文)
php 从url中获取域名的实例代码
google排名影响因素大全
域名与搜索引擎优化浅谈
php获取站点的来路域名的方法

[关闭]