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

php函數:域名whois查詢(利用萬網與新網接口查詢)

編輯:關於PHP編程

函數一:
<?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];
}
//函數調用
echo whois_hichina(www.ite5e.com)

函數二:
//新網 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];

}
//函數調用
echo whois_xinnet(www.ite5e.com)
?>

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