Home > php教程 > php手册 > Whois的PHP代码

Whois的PHP代码

WBOY
Release: 2016-06-13 10:14:06
Original
1578 people have browsed it

这是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
Copy after login

";
}
?>

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template