程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP實現域名whois查詢的代碼(數據源萬網、新網)

PHP實現域名whois查詢的代碼(數據源萬網、新網)

編輯:關於PHP編程

萬網 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];
}
}

  上海電信測試,感覺新網的查詢要快一點,且萬網有些域名查詢不出來的,新網亦可以查詢到!

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved