网站地图    收藏   

主页 > php专栏 > php函数大全 >

php域名whois查询函数 - php函数

来源:自学PHP网    时间:2014-11-25 00:26 作者: 阅读:

[导读] functionwhois_hichina($domain){preg_match(|pre(.+?)/pre|is,@file_get_contents(#39;http://whois.hichina.com/cgi-bin/whois?domain=#39;.$domain.#39;#39;),$whois);$whois[0]=str_......

php域名whois查询函数

  1. function whois_hichina($domain) { 
  2. preg_match("|<pre>(.+?)</pre>|is", @file_get_contents('http://whois.hichina.com/cgi-bin/whois?domain='.$domain.''), $whois); 
  3.  
  4. $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]));//过滤掉此段文字 
  5.  
  6.  
  7. return $whois[0]); 
  8.  
  9. //新网 whois (非新网提供,只是根据新网自身网站的url修改实现) 
  10. function whois_xinnet($domain) { 
  11. 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);//开源代码phpfensi.com 
  12.  
  13. return $whois[0]; 
  14. }  

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论