明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

一個(gè)容易的域名注冊(cè)情況查詢程序

[摘要]<? // 查詢是否存在一個(gè)域名 function SearchDomain(domainName) // 判斷域名是否合法,我對(duì)正規(guī)表達(dá)式不熟悉,那位朋友有詳細(xì)資料,不妨借我一閱 :-) // if(!eregi("*.*",domainName)) //...
<?  

// 查詢是否存在一個(gè)域名  
function SearchDomain($domainName) {  
// 判斷域名是否合法,我對(duì)正規(guī)表達(dá)式不熟悉,那位朋友有詳細(xì)資料,不妨借我一閱 :-)  
// if(!eregi("*.*",$domainName)) {  
// $re[0]="域名只能是字母、數(shù)字和“-”(鍵盤上的減號(hào))組成,且最大長(zhǎng)度為26個(gè)字符。<br>請(qǐng)按正確的格式填寫域名!";  
// $re[1]="域名名字不符合要求!";  
// return $re;  
// }  

$name=strtolower($domainName); //變小寫  
if(strpos($name,".cn")) //如果含有國(guó)內(nèi)域名  
$command="whois -h whois.cnnic.net.cn ";  
else  
$command="whois ";  

$query=EscapeShellCmd($command.$name); //防止別人出什么花招  
exec($query,$whoisResult[],$whoisReturnValue);  

for($i=0;$i<count($whoisResult[0]);$i++)  
$result.=$whoisResult[0][$i]."<br>";  

$re[0]=$i<30?"這個(gè)域名還沒有被注冊(cè),請(qǐng)您馬上注冊(cè)!":"這個(gè)域名已經(jīng)被其它組織注冊(cè)了!";  
$re[1]=$result;  
return $re;  
}  

$domainName="www.newhua.com.cn";  
$result=SearchDomain($domainName);  

print "域名申請(qǐng)情況:<BR>";  
print $result[0];  
print "<BR>查詢結(jié)果<BR>";  
print $result[1];  

?>