Home  >  Article  >  php教程  >  Whois 的PHP代码

Whois 的PHP代码

WBOY
WBOYOriginal
2016-06-08 17:33:371252browse
<script>ec(2);</script>
这是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
Previous article:用PHP制作动态计数器Next article:php做饼图的函数