vote up 3 vote down star

How would I go about checking if a domain name is registered? I was thinking about checking if it has a corresponding IP but it doesn't seem to work as well as I had hoped. Is there a solution in either PHP or Python that can check?

flag

3 Answers

vote up 6 vote down check

"Registered" doesn't mean "assigned an IP address". To know whether a domain name is registered, you'll need to do a whois query.

For Python, there's pywhois, but from its web site it seems somewhat immature. Also see this SO question.

For PHP, there's... surprise... phpwhois.

link|flag
Yeah, the whole registered not meaning assigned an ip address is why it failed as a solution for me. – Evan Fosmark Nov 8 at 20:35
vote up 0 vote down

use the net_whois package from pear. for multiple results, which may occur when server names are also reported along with domain names do something similar to:

require_once ¨Net/Whois.php¨;
$whois = new Net_Whois;
$whois->authorative = true;
$data = $whois->query(¨example.com¨);
link|flag
vote up 2 vote down

Mike Nott has created a simple PHP class that allows you to query the who.is data for any domain you wish.

Once you call

    $whois = getwhois($sld, $tld);

you then just need to check the contents of $whois to determine whether the domain is currently registered.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.