原来写のIPwhois类
<?php
/*
*
* クラス : IP Whois バージョン 1.0
* 情報 : 4 Whois サーバーから IP 情報を取得します
* 著者 : PhpUp スタジオ
* 日付 : 2004/12/12
* www.knowsky.com
*
*/
クラスIPWhis
{
var $server = 'whois.arin.net';
var $target;
var $timeout = 10;
var $msg;
関数IPWhis($target)
{
$this->target = $target;
}
関数 ShowInfo()
{
if($this->_CheckIP($this->ターゲット))
{
$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(エレギ("[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}", $temptarget))
{
$f = 1;
$detail =explode(".",$temptarget);
foreach($detail として $v)
{
if($v > 255 || $v < 0)
{
$f = 0;
壊す;
}
}
}
それ以外の場合は $f =0;
$f を返します。
}
関数_GetInfo($tempserver)
{
$this->msg = '';
if(!$sock = fsockopen($tempserver, 43, $num, $error, $this->timeout))
{
unset($sock);
$this->msg = "$tempserver (ポート 43) への接続がタイムアウトしました";
}
それ以外
{
fputs($sock, "$this->targetn");
$this->msg .= "<p><b>の IP Whois 情報。$this->target."</b><br><br>";
$this->msg .= "------------------------------------------ -----------------------<BR>";
その間 (!feof($sock))
$this->msg .= fgets($sock, 10240);
$this->msg .= "------------------------------------------ -----------------------<BR></p>";
}
fclose($sock);
return 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>".$_POST['ip']." の IP Whois 情報</b><br><br>";
$result = $whois->ShowInfo();
}
$result をエコーします。
?>