原来写的IPwhois类
<?php
/*
*
* Classe: IP Whois Versão 1.0
* Informações: Obtenha informações do IP do servidor whois 4
* Autor: PhpUp Studio
*Data: 12/12/2004
* www.knowsky.com
*
*/
classe IPWhois
{
var $servidor = 'whois.arin.net';
var $alvo;
var $tempo limite = 10;
var $msg;
função IPWhois($alvo)
{
$este->alvo = $alvo;
}
função ShowInfo()
{
if($this->_CheckIP($this->target))
{
$this->msg = $this->_GetInfo($this->servidor);
if($this->_CheckInfo($this->msg))
{
$this->msg = $this->_GetInfo($this->servidor);
}
}
else $this->msg = '<p>Por favor, insira um endereço IP<br></p>';
return $isto->msg;
}
função _CheckIP($temptarget)
{
if(eregi("[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}", $temptarget))
{
$f = 1;
$detalhe = explodir(".",$temptarget);
foreach($detalhe como $v)
{
se($v > 255 || $v < 0)
{
$f = 0;
quebrar;
}
}
}
senão $f =0;
retornar$f;
}
função _GetInfo($tempserver)
{
$this->msg = '';
if(!$sock = fsockopen($tempserver, 43, $num, $error, $this->timeout))
{
unset($meia);
$this->msg = "Tempo limite de conexão com $tempserver (porta 43)";
}
outro
{
fputs($sock, "$this->targetn");
$this->msg .= "<p>Informações Whois de IP para <b>".$this->destino."</b><br><br>";
$this->msg .= "------------------------------------------ -----------------------<BR>";
enquanto (!feof($sock))
$this->msg .= fgets($sock, 10240);
$this->msg .= "------------------------------------------ -----------------------<BR></p>";
}
fclose($meia);
return nl2br($this->msg);
}
função _CheckInfo($tempmsg)
{
if(eregi("whois.ripe.net", $tempmsg))
{
$this->servidor = "whois.ripe.net";
retornar 1;
}
elseif(eregi("whois.apnic.net", $tempmsg))
{
$this->servidor = "whois.apnic.net";
retornar 1;
}
elseif(eregi("whois.lacnic.net", $tempmsg))
{
$this->servidor = "whois.lacnic.net";
retornar 1;
}
caso contrário, retorne 0;
}
}
?>
调用
<?php
inclua './class.php';
$target = isset($_GET['ip'])?gethostbyname($_GET['ip']):'NULL';
if('NULL' == $target || '' == $target)$result = '<p>Insira um endereço IP<br></p>';
outro
{
$whois = novo IPWhois($alvo);
//$result = "Informações Whois de IP para <b>".$_POST['ip']."</b><br><br>";
$resultado = $whois->ShowInfo();
}
eco $resultado;
?>