原來寫的IPwhois類別
<?php
/*
*
* 類別:IP Whois 版本 1.0
* 資訊 : 從 4 whois 伺服器取得 IP 訊息
* 作者:PhpUp工作室
* 日期 : 2004 年 12 月 12 日
* www.knowsky.com
*
*/
IPWhois 類
{
var $server = 'whois.arin.net';
var $目標;
var $超時= 10;
var $msg;
函數 IPWhois($target)
{
$這個->目標= $目標;
}
函數 ShowInfo()
{
if($this->_CheckIP($this->target))
{
$this->msg = $this->_GetInfo($this->server);
if($this->_CheckInfo($this->msg))
{
$this->msg = $this->_GetInfo($this->server);
}
}
else $this->msg = '<p>請輸入 IP 位址<br></p>';
返回 $this->msg;
}
函數 _CheckIP($temptarget)
{
if(eregi("[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}", $temptarget))
{
$f = 1;
$detail=explode(".",$temptarget);
foreach($詳細資料為$v)
{
if($v > 255 || $v < 0)
{
$f = 0;
休息;
}
}
}
否則 $f =0;
返回$f;
}
函式 _GetInfo($tempserver)
{
$this->msg = '';
if(!$sock = fsockopen($tempserver, 43, $num, $error, $this->timeout))
{
取消設定($襪子);
$this->msg = "連接到 $tempserver (連接埠 43) 逾時";
}
別的
{
fputs($sock, "$this->targetn");
$this->msg .= "<p><b>的 IP Whois 訊息".$this->目標。
$this->msg .= "------------------------------------------ -------------- -----------------------<BR>";
而 (!feof($sock))
$this->msg .= fgets($sock, 10240);
$this->msg .= "------------------------------------------ -------------- -----------------------<BR></p>";
}
fclose($sock);
返回 nl2br($this->msg);
}
函數_CheckInfo($tempmsg)
{
if(eregi("whois.ripe.net", $tempmsg))
{
$this->server = "whois.ripe.net";
返回1;
}
elseif(eregi("whois.apnic.net", $tempmsg))
{
$this->server = "whois.apnic.net";
返回1;
}
elseif(eregi("whois.lacnic.net", $tempmsg))
{
$this->server = "whois.lacnic.net";
返回1;
}
否則返回0;
}
}
?>
呼叫
<?php
包括'./class.php';
$target = isset($_GET['ip'])?gethostbyname($_GET['ip']):'NULL';
if('NULL' == $target || '' == $target)$result = '<p>請輸入 IP 位址<br></p>';
別的
{
$whois = 新 IPWhois($target);
//$result = "<b>的 IP Whois 訊息".$_POST['ip']."</b><br><br>";
$結果 = $whois->ShowInfo();
}
回顯$結果;
?>