函數一:
<?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)
?>