我一直在使用this metode。
我已经在我的网站上进行了设置,但出于某种原因,它似乎并不适用于所有扩展程序。 正如我设置的那样,我在我的网站上设置了该代码,但修改了它以检查所请求的域名。
您可以在我的网站here上试用。
所以在这里你可以看到一些有用的例子:
尝试:just.com,just.net,example.com和test.com。
有些不成功的例子:
尝试:just.dk,example.dk和test.dk
以下是我在网站上的完整代码:
<?php
function checkDomainAvailability($domain_name){
$server = 'whois.crsnic.net';
// Open a socket connection to the whois server
$connection = fsockopen($server, 43);
if (!$connection) return false;
// Send the requested doman name
fputs($connection, $domain_name."\r\n");
// Read and store the server response
$response_text = ' :';
while(!feof($connection)) {
$response_text .= fgets($connection,128);
}
// Close the connection
fclose($connection);
// Check the response stream whether the domain is available
if (strpos($response_text, 'No match for')) return true;
else return false;
}
$domainname = 'accurst.com';
if (isset($_GET['domain']))
$domainname = $_GET['domain'];
if(checkDomainAvailability($domainname)) echo 'Domain : '.$domainname.' is Available';
else echo 'Domain : '.$domainname.' is Already Taken';
?>
有没有人知道如何解决这个问题?