I want to fecth who is infromationn of any domain, but all the tutorials i have seen online only prints out the Registration & expiration date, Registrar Information and nameservers.
I need more information like Registrants email, City, Postal Code , Registrant Phone , Admin Name, email etc.
I have seen some sites fetch those Whois data, but my script doesnt include those fields.
Heres what i did
function GetWhoisInfo($whoisserver, $domain){
$port = 43;
$timeout = 10;
$fp = @fsockopen($whoisserver, $port, $errno, $errstr, $timeout) or die("Socket Error " . $errno . " - " . $errstr);
stream_set_blocking($fp, true);
fputs($fp, $domain . "
");
$out = "";
while(!feof($fp)){
$out .= fgets($fp, 8192);
}
fclose($fp);
return $out;
}
Then i echo the fucnction
I have tried several scripts, it didnt work, the only one that was close was fetching Whois of an IP address, but it wont be accurate for me since multiple domains on a server cxan share an ip.
Thanks
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…