如果我们需要自己做一个域名查询年龄的脚本可以使用下面的脚本。
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”);本文链接:http://www.laodong.me/php-domain-age-checker/

PHP仍然流行的原因是其易用性、靈活性和強大的生態系統。 1)易用性和簡單語法使其成為初學者的首選。 2)與web開發緊密結合,處理HTTP請求和數據庫交互出色。 3)龐大的生態系統提供了豐富的工具和庫。 4)活躍的社區和開源性質使其適應新需求和技術趨勢。

PHP和Python都是高層次的編程語言,廣泛應用於Web開發、數據處理和自動化任務。 1.PHP常用於構建動態網站和內容管理系統,而Python常用於構建Web框架和數據科學。 2.PHP使用echo輸出內容,Python使用print。 3.兩者都支持面向對象編程,但語法和關鍵字不同。 4.PHP支持弱類型轉換,Python則更嚴格。 5.PHP性能優化包括使用OPcache和異步編程,Python則使用cProfile和異步編程。

PHP主要是過程式編程,但也支持面向對象編程(OOP);Python支持多種範式,包括OOP、函數式和過程式編程。 PHP適合web開發,Python適用於多種應用,如數據分析和機器學習。

PHP起源於1994年,由RasmusLerdorf開發,最初用於跟踪網站訪問者,逐漸演變為服務器端腳本語言,廣泛應用於網頁開發。 Python由GuidovanRossum於1980年代末開發,1991年首次發布,強調代碼可讀性和簡潔性,適用於科學計算、數據分析等領域。

PHP適合網頁開發和快速原型開發,Python適用於數據科學和機器學習。 1.PHP用於動態網頁開發,語法簡單,適合快速開發。 2.Python語法簡潔,適用於多領域,庫生態系統強大。

PHP在現代化進程中仍然重要,因為它支持大量網站和應用,並通過框架適應開發需求。 1.PHP7提升了性能並引入了新功能。 2.現代框架如Laravel、Symfony和CodeIgniter簡化開發,提高代碼質量。 3.性能優化和最佳實踐進一步提升應用效率。

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP類型提示提升代碼質量和可讀性。 1)標量類型提示:自PHP7.0起,允許在函數參數中指定基本數據類型,如int、float等。 2)返回類型提示:確保函數返回值類型的一致性。 3)聯合類型提示:自PHP8.0起,允許在函數參數或返回值中指定多個類型。 4)可空類型提示:允許包含null值,處理可能返回空值的函數。


熱AI工具

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

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

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境

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

mPDF
mPDF是一個PHP庫,可以從UTF-8編碼的HTML產生PDF檔案。原作者Ian Back編寫mPDF以從他的網站上「即時」輸出PDF文件,並處理不同的語言。與原始腳本如HTML2FPDF相比,它的速度較慢,並且在使用Unicode字體時產生的檔案較大,但支援CSS樣式等,並進行了大量增強。支援幾乎所有語言,包括RTL(阿拉伯語和希伯來語)和CJK(中日韓)。支援嵌套的區塊級元素(如P、DIV),

EditPlus 中文破解版
體積小,語法高亮,不支援程式碼提示功能

Dreamweaver CS6
視覺化網頁開發工具