原来写的IPwhois类
<?php
/*
*
* Classe : IP Whois Version 1.0
* Info : Obtenez les informations sur l'IP du serveur whois du formulaire 4
* Auteur : PhpUp Studio
* Date : 12/12/2004
* www.knowsky.com
*
*/
classe IPWhois
{
var $server = 'whois.arin.net';
var $cible;
var $délai d'attente = 10 ;
var $msg;
fonction IPWhois ($ cible)
{
$this->cible = $cible ;
}
fonction ShowInfo()
{
si($this->_CheckIP($this->target))
{
$this->msg = $this->_GetInfo($this->server);
si($this->_CheckInfo($this->msg))
{
$this->msg = $this->_GetInfo($this->server);
}
}
else $this->msg = '<p>Veuillez saisir une adresse IP<br></p>';
retourner $this->msg ;
}
fonction _CheckIP ($ temptarget)
{
si(eregi("[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}", $temptarget))
{
$f = 1 ;
$détail = exploser(".",$temptarget);
foreach ($ détail en $ v)
{
si($v > 255 || $v < 0)
{
$f = 0 ;
casser;
}
}
}
sinon $f =0 ;
retourner $f ;
}
fonction _GetInfo ($ tempserver)
{
$this->msg = '';
if(!$sock = fsockopen($tempserver, 43, $num, $error, $this->timeout))
{
non défini($chaussette);
$this->msg = "Connexion à $tempserver (port 43) dépassée";
}
autre
{
fputs($sock, "$this->targetn");
$this->msg .= "<p>Informations IP Whois pour <b>".$this->cible."</b><br><br>";
$this->msg .= "------------------------------------------------------- -----------------------<BR>";
tandis que (!feof($chaussette))
$this->msg .= fgets($sock, 10240);
$this->msg .= "------------------------------------------------------- -----------------------<BR></p>";
}
fclose($chaussette);
return nl2br($this->msg);
}
fonction _CheckInfo ($ tempmsg)
{
si(eregi("whois.ripe.net", $tempmsg))
{
$this->server = "whois.ripe.net";
renvoyer 1 ;
}
elseif(eregi("whois.apnic.net", $tempmsg))
{
$this->server = "whois.apnic.net";
renvoyer 1 ;
}
elseif(eregi("whois.lacnic.net", $tempmsg))
{
$this->server = "whois.lacnic.net";
renvoyer 1 ;
}
sinon, renvoie 0 ;
}
}
?>
调用
<?php
inclure './class.php';
$target = isset($_GET['ip'])?gethostbyname($_GET['ip']):'NULL';
if('NULL' == $target || '' == $target)$result = '<p>Veuillez saisir une adresse IP<br></p>';
autre
{
$whois = nouveau IPWhois($target);
//$result = "Informations IP Whois pour <b>".$_POST['ip']."</b><br><br>";
$result = $whois->ShowInfo();
}
echo $résultat ;
?>