ďťż

[PHP] Skrypt whois jak to sprawdzić

       

Podstrony


telcocafe

Jak można sprawdzić z użyciem PHP czy dana domena jest wolna, czy zajęta? Znalazłem taki skrypt:
<form method="POST" action= "<?PHP echo($PHP_SELF); ?>"> Function checkDomainReg($domain)<br> author: David Wade Arnold<br><br> <b>Check to see if a domain is registered</b> <P> <INPUT name="domain" SIZE="30" MAXLENGTH="35"> <P> <INPUT TYPE="SUBMIT" VALUE="Check Domain"> <INPUT TYPE="RESET" VALUE="Clear"> </P> </FORM> <hr> <font size="2"><pre> <? //This function was found at : [url="http://www.phpwizard.net/phpTidbits/"]http://www.phpwizard.net/phpTidbits/[/url] function checkDomainReg($domain, $server="whois.crsnic.net") { /* Author: David Wade Arnold -- david@eccentrichosting.net checkDomainReg: checks to see if a domain name is taken. Returns boolean false domain name is not taken. configuration: This scripts depends on one line of a whois output. If the whois server is changed make sure that the lineNumber variable is changed to the line that returns: Domain Name: ECCENTRICTECHNOLOGIES.COM -- when domain exists and No match for "ASHDFIOWUET.NET". -- when domain does not exist This line is diffrent for diffrent whois servers. wrap-up: Please email me if you make changes. Hey, I want a better version too! */ $lineNumber = 8; // open a socket connection to a whois server $fp = fsockopen ($server, 43, &$errnr, &$errstr) or die("$errno: $errstr"); fputs($fp, "$domain\n"); while (!feof($fp)) { //return each line of stout and place it in $serverReturn $serverReturn = fgets($fp, 2048); $x++; if ($x == $lineNumber) { $line = $serverReturn; } } fclose($fp); //tokenize the string so we can find the No $token = strtok("$line"," "); if ($token == 'No') { $result = 0; } else { $result = 1; } return $result; } ?> <? If (isset ($domain)){ $answer = checkDomainReg($domain); if($answer) { echo "Please try again the domain $domain is registered"; } else { echo "$domain Is free to register"; } } ?> </pre></font> </body> </html>
Jednak nie działa on poprawnie, gdyż wyświetla, że domena jest zajęta nawet gdy jest wolna(np. www.ghsdhwdsaegfdnfghinhsnhhhhhh.eu). Jak pobierać takie dane np. z NASK?
Użytkownik kiperoman edytował ten post 03 listopad 2006, 13:21


polacz sie np z nazwa.pl i wyciagnij od nich te dane ze strony :P

skrypt nie dziala poniewaz strona whois.crsnic.net nie odpowiada.

na wiekszosci serwerow jest dostepne narzedzie 'whois' :) mozesz je uzyc..
albo np http://who.is/

  • zanotowane.pl
  • doc.pisz.pl
  • pdf.pisz.pl
  • nvm.keep.pl

  • Sitedesign by AltusUmbrae.