>  기사  >  백엔드 개발  >  php函数:域名whois查询(利用万网与新网接口查询)_PHP教程

php函数:域名whois查询(利用万网与新网接口查询)_PHP教程

WBOY
WBOY원래의
2016-07-13 17:40:50970검색

函数一:
//万网 whois(使用的接口为万网提供合法接口)
function whois_hichina($domain) {
    preg_match("|

(. ?)
|is", @file_get_contents(http://whois.hichina.com/cgi-bin/whois?domain=.$domain.), $whois);
    $whois[0] = str_replace(友情提示:按注册局要求,过期域名可能会处于注册商自动续费期阶段,您在此查询所看到的域名到期日仅供参考
请您进入会员区查看该域名的实际到期时间,并请及时进行续费,谢谢!, , ($whois[0]));//过滤掉此段文字
    return $whois[0];
}
//函数调用
echo whois_hichina(www.ite5e.com)

函数二:
//新网 whois (非新网提供,只是根据新网自身网站的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];

}
//函数调用
echo whois_xinnet(www.ite5e.com)
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/486184.htmlTechArticle函数一: ?php //万网 whois(使用的接口为万网提供合法接口) function whois_hichina($domain) { preg_match("|pre(. ?)/pre|is", @file_get_contents(http://whois.hichin...
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.