Home >Backend Development >PHP Tutorial >Whois的PHP代码_PHP

Whois的PHP代码_PHP

WBOY
WBOYOriginal
2016-06-01 12:39:21791browse

WHOIS

这是WHOIS查找的代码。

function whois_request($server, $query) {
$data = "";
$fp = fsockopen($server, 43);
if($fp) {
fputs($fp, $query."rn");
while(!feof($fp)) {
$data .= fread($fp, 1000);
}
fclose($fp);
}
return $data;
}
?>


Server: (ie: whois.networksolutions.com)

Domain: (ie: wackowoh.com)




if($action == "query") {
$data = whois_request($server, $query);
echo "Sent $query to $server.

";
echo "Output:

$data

";
}
?>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn