Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.0.6

Request #4017 Add lookup of whois server per TLD
Submitted: 2005-03-31 12:43 UTC
From: gemal Assigned: kguest
Status: Bogus Package: Net_Whois
PHP Version: 4.3.10 OS: Linux
Roadmaps: (Not assigned)    
Subscription  
Comments Add Comment Add patch


Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know! Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem : 49 - 38 = ?

 
 [2005-03-31 12:43 UTC] gemal
Description: ------------ It could be really nice if it was possible to lookup which whois server to use with a specific TLD a list of TLD's and the whois server can be located here: http://www.math.utah.edu/whois.html

Comments

 [2010-06-06 21:36 UTC] hm2k (James Wade)
You don't need to use a html list, you can simply send a query to whois.iana.org which will return the details of the tld, including the whois server. However, this script uses xxx.whois-servers.net to lookup the correct server, you can use that.
 [2011-08-13 18:38 UTC] kguest (Ken Guest)
-Assigned To: +Assigned To: kguest
 [2011-08-13 18:41 UTC] kguest (Ken Guest)
-Status: Assigned +Status: Bogus
Sorry, but your problem does not imply a bug in PEAR itself. For a list of more appropriate places to ask for help using PEAR, please visit http://pear.php.net/support/ as this bug system is not the appropriate forum for asking support questions. Thank you for your interest in PEAR. use the existing getDomainServer method: <?php require_once "Net/Whois.php"; $tld = "de"; // get information about this tld $whois = new Net_Whois; $data = $whois->getDomainServer($tld); echo $data; ?>