PHP查询域名年龄脚本类
如果我们需要自己做一个域名查询年龄的脚本可以使用下面的脚本。
class DomainAge{ private $WHOIS_SERVERS=array( “com” => array(“whois.verisign-grs.com”,”/Creation Date:(.*)/”), “net” => array(“whois.verisign-grs.com”,”/Creation Date:(.*)/”), “org” => array(“whois.pir.org”,”/Created On:(.*)/”), “info” => array(“whois.afilias.info”,”/Created On:(.*)/”), “biz” => array(“whois.neulevel.biz”,”/Domain Registration Date:(.*)/”), “us” => array(“whois.nic.us”,”/Domain Registration Date:(.*)/”), “uk” => array(“whois.nic.uk”,”/Registered on:(.*)/”), “ca” => array(“whois.cira.ca”,”/Creation date:(.*)/”), “tel” => array(“whois.nic.tel”,”/Domain Registration Date:(.*)/”), “ie” => array(“whois.iedr.ie”,”/registration:(.*)/”), “it” => array(“whois.nic.it”,”/Created:(.*)/”), “cc” => array(“whois.nic.cc”,”/Creation Date:(.*)/”), “ws” => array(“whois.nic.ws”,”/Domain Created:(.*)/”), “sc” => array(“whois2.afilias-grs.net”,”/Created On:(.*)/”), “mobi” => array(“whois.dotmobiregistry.net”,”/Created On:(.*)/”), “pro” => array(“whois.registrypro.pro”,”/Created On:(.*)/”), “edu” => array(“whois.educause.net”,”/Domain record activated:(.*)/”), “tv” => array(“whois.nic.tv”,”/Creation Date:(.*)/”), “travel” => array(“whois.nic.travel”,”/Domain Registration Date:(.*)/”), “in” => array(“whois.inregistry.net”,”/Created On:(.*)/”), “me” => array(“whois.nic.me”,”/Domain Create Date:(.*)/”), “cn” => array(“whois.cnnic.cn”,”/Registration Date:(.*)/”), “asia” => array(“whois.nic.asia”,”/Domain Create Date:(.*)/”), “ro” => array(“whois.rotld.ro”,”/Registered On:(.*)/”), “aero” => array(“whois.aero”,”/Created On:(.*)/”), “nu” => array(“whois.nic.nu”,”/created:(.*)/”) ); public function age($domain) { $domain = trim($domain); //remove space from start and end of domain if(substr(strtolower($domain), 0, 7) == “http://”) $domain = substr($domain, 7); // remove http:// if included if(substr(strtolower($domain), 0, 4) == “www.”) $domain = substr($domain, 4);//remove www from domain if(preg_match(“/^([-a-z0-9]{2,100})\.([a-z\.]{2,8})$/i”,$domain)) { $domain_parts = explode(“.”, $domain); $tld = strtolower(array_pop($domain_parts)); if(!$server=$this->WHOIS_SERVERS[$tld][0]) { return false; } $res=$this->queryWhois($server,$domain); if(preg_match($this->WHOIS_SERVERS[$tld][1],$res,$match)) { date_default_timezone_set(‘UTC’); $time = time() ? strtotime($match[1]); $years = floor($time / 31556926); $days = floor(($time % 31556926) / 86400); if($years == “1”) {$y= “1 year”;} else {$y = $years . ” years”;} if($days == “1”) {$d = “1 day”;} else {$d = $days . ” days”;} return “$y, $d”; } else return false; } else return false; } private function queryWhois($server,$domain) { $fp = @fsockopen($server, 43, $errno, $errstr, 20) or die(“Socket Error ” . $errno . ” ? ” . $errstr); if($server==”whois.verisign-grs.com”) $domain=”=”.$domain; fputs($fp, $domain . “\r\n”); $out = “”; while(!feof($fp)){ $out .= fgets($fp); } fclose($fp); return $out; } }
登入後複製
如何使用?
require(“DomainAge.class.php”); $w=new DomainAge(); echo $w->age(“laodong.me”);
登入後複製
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章
R.E.P.O.能量晶體解釋及其做什麼(黃色晶體)
2 週前
By 尊渡假赌尊渡假赌尊渡假赌
倉庫:如何復興隊友
4 週前
By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island冒險:如何獲得巨型種子
3 週前
By 尊渡假赌尊渡假赌尊渡假赌
擊敗分裂小說需要多長時間?
3 週前
By DDD
R.E.P.O.保存文件位置:在哪里以及如何保護它?
3 週前
By DDD

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)