Home >Backend Development >PHP Tutorial >Whois PHP code_PHP tutorial

Whois PHP code_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:12:52804browse

这是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

";
}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/629319.htmlTechArticle这是WHOIS查找的代码。 ? function whois_request($server, $query) { $data = ; $fp = fsockopen($server, 43); if($fp) { fputs($fp, $query.rn); while(!feof($fp)) { $data .= fread...
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