(. +?)|is", @file_get_contents('http://whois.hichina.com/cgi-bin/whois?domain='.$domain.''), $wh"/> (. +?)|is", @file_get_contents('http://whois.hichina.com/cgi-bin/whois?domain='.$domain.''), $wh">
ホームページ >バックエンド開発 >PHPチュートリアル >Whois PHP はドメイン名 Whois クエリ コード データ ソースを実装します Wanwang、Xinwang
Wanwang whois (使用されているインターフェイスは Wanwang の正当なインターフェイスを提供します)
コードをコピーします コードは次のとおりです:
function whois_hichina($domain) {
preg_match("|
(.+? )< ;/pre>|is", @file_get_contents('http://whois.hichina.com/cgi-bin/whois?domain='.$domain.''), $whois);
$whois[0 ] = str_replace('注意事項: レジストリの要件に従って、有効期限が切れたドメイン名はレジストラの自動更新期間に入っている可能性があります。このクエリで表示されるドメイン名の有効期限は参考用です
お願い< ;a href ="http://www.net.cn/has_client/userlogon/user_logon1.asp" target="_blank">メンバーエリアに入るドメイン名の実際の有効期限を確認し、期限内に更新してください! ', '', ($whois[0]));//このテキストをフィルタリングします
return $whois[0]); Xinnet whois (Xinnet によって提供されていません)独自の Web サイトの Xinnet URL 変更実装に基づいています)
コードをコピーしますコードは次のとおりです:function whois_xinnet($domain) { preg_match("|
(.+?)|is" , @file_get_contents('http://www.xinnet.cn/Modules/agent/serv/pages/domain_whois.jsp?domainNameWhois='.$domain.'&noCode=noCode'), $ whois); return $whois[ 0];}
}
Shanghai Telecom でテストしたところ、Xinwang でのクエリの方が高速であり、Wanwang でクエリできない一部のドメイン名も Xinwang でクエリできると感じています。
上記では、whois コンテンツを含むドメイン名 Whois クエリ コード データ ソース Wanwang、Xinwang を実装する Whois PHP を紹介しました。PHP チュートリアルに興味のある友人に役立つことを願っています。