PHP实现域名whois查询的代码(数据源万网、新网)
作者:bea
万网 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('友情提示:按注册
万网 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];
}
}
上海电信测试,感觉新网的查询要快一点,且万网有些域名查询不出来的,新网亦可以查询到!
有用 | 无用
代码如下:
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];
}
}
上海电信测试,感觉新网的查询要快一点,且万网有些域名查询不出来的,新网亦可以查询到!
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- PHP MVC模式在网站架构中的实现分析
- 通用PHP动态生成静态HTML网页的代码
- php绝对路径与相对路径之间关系的的分析
- PHP 引用文件技巧
- php下过滤html代码的函数 提高程序安全性
- PHP set_time_limit(0)长连接的实现分析
- PHP clearstatcache()函数详解
- PHP strtok()函数的优点分析
- 关于PHP5 Session生命周期介绍
- PHP正则的Unknown Modifier错误解决方法
- php is_file()和is_dir()用于遍历目录时用法注意事项
- php 读取shell管道传输过来的内容
- php 连接mssql数据库 初学php笔记
- discuz authcode 经典php加密解密函数解析
- php下使用SimpleXML 处理XML 文件
- PHP 导出数据到淘宝助手CSV的方法分享
- 基于pear auth实现登录验证
- php str_pad() 将字符串填充成指定长度的字符串
- php 用checkbox一次性删除多条记录的方法