phpbar.de logo

Mailinglisten-Archive

[php] whois

[php] whois

Timo Schmidt php_(at)_phpcenter.de
Tue, 29 May 2001 22:13:39 +0200


* Thomas <ThomasB_(at)_uni.de> [2001-05-29 21:52:35]:
> Hallo!
> 
> Hat von euch jemand ein script mit dem man checken kann ob eine .de Domain noch 
> frei ist?

Untested quick hack:
--------------------

<?php

function checkdomain($domain2check)
{
    $server = "whois.ripe.net";
    
    if (!($fp = fsockopen ("$server", 43, $errnr, $errstr)))
	return 0;
    
    fputs($fp, $domain2check."\n");
    $still_free = 0;
    while (!feof($fp))
    {
	$res = fgets($fp, 2048);
	if (strstr($res, "No entries found"))
	    return 1;
    }

    return 0;

}

echo "Checking ....<br>\n";
$bar = checkdomain("irgendeine.domain");

if ($bar)
    echo "Domain is free";
    

?>


  -Timo


php::bar PHP Wiki   -   Listenarchive