1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | <?
function SearchDomain( $domainName ) {
请按正确的格式填写域名!";
$name = strtolower ( $domainName );
if ( strpos ( $name , ".cn" ))
$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 ]."
";
$re [0]= $i <30? "这个域名还没有被注册,请您马上注册!" : "这个域名已经被其它组织注册了!" ;
$re [1]= $result ;
return $re ;
}
$domainName = "www.newhua.com.cn" ;
$result =SearchDomain( $domainName );
print "域名申请情况:
";
print $result [0];
print "
查询结果
";
print $result [1];
?>
|
登入後複製
以上就介紹了 一個簡單的域名註冊情況查詢程序,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。