Original phpWhois soruces
Find a file
2005-11-07 16:45:39 +00:00
src added handler for .int domains 2005-11-07 16:45:39 +00:00
Changes.md added handler for .int domains 2005-11-07 16:45:39 +00:00
example.cli.php changed disclaimer url 2005-08-31 15:26:22 +00:00
example.php fixed some short tags in example.php 2005-10-10 12:18:04 +00:00
FAQ.md removed obsolete FAQ item 2005-08-29 11:08:16 +00:00
handler.template.php changed disclaimer url 2005-08-31 15:26:22 +00:00
Handlers.md fix for address reporting 2005-10-04 15:19:45 +00:00
License.md added GPL license file 2005-08-31 15:32:00 +00:00
Readme.md installation clarified 2005-10-10 15:22:23 +00:00
test.txt added handler for .int domains 2005-11-07 16:45:39 +00:00
whois.es.php fixed warning for non-existant .es domains 2005-10-11 06:33:03 +00:00
whois.gtld.bulkr.php whois.gtld.bulkr.php 2005-08-31 17:03:18 +00:00
whois.gtld.buydomains.php changed disclaimer url 2005-08-31 15:26:22 +00:00
whois.gtld.chdom.php changed disclaimer url 2005-08-31 15:26:22 +00:00
whois.gtld.core.php fix for address reporting 2005-10-04 15:19:45 +00:00
whois.gtld.cronon.php last minute fixes 2005-08-31 17:44:35 +00:00
whois.gtld.directi.php added handler for directi 2005-10-21 14:17:22 +00:00
whois.gtld.domainbank.php changed disclaimer url 2005-08-31 15:26:22 +00:00
whois.gtld.dotregistrar.php changed disclaimer url 2005-08-31 15:26:22 +00:00
whois.gtld.innerwise.php changed disclaimer url 2005-08-31 15:26:22 +00:00
whois.gtld.inwwcom.php changed disclaimer url 2005-08-31 15:26:22 +00:00
whois.gtld.netsol.php changed disclaimer url 2005-08-31 15:26:22 +00:00
whois.gtld.opensrsnet.php changed disclaimer url 2005-08-31 15:26:22 +00:00
whois.gtld.registercom.php changed disclaimer url 2005-08-31 15:26:22 +00:00
whois.gtld.stargate.php changed disclaimer url 2005-08-31 15:26:22 +00:00
whois.icon.png changed gif icon for a new png one 2005-08-29 10:52:37 +00:00
whois.ip.bripw.php changed disclaimer url 2005-08-31 15:26:22 +00:00
whois.za.php changed disclaimer url 2005-08-31 15:26:22 +00:00

Id

Introduction

This package contains a Whois (RFC954) library for PHP. It allows a PHP program to create a Whois object, and obtain the output of a whois query with the Lookup function.

The response is an array containing, at least, an element 'rawdata', containing the raw output from the whois request.

In addition, if the domain belongs to a registrar for which a special handler exists, the special handler will parse the output and make additional elements available in the response. The keys of these additional elements are described in the file HANDLERS.

It also supports ip/AS whois queries which are very useful to trace SPAM. You just only need to pass the doted quad ip address or the AS (Autonomus System) handle instead of the domain name. Limited, non-recursive support for Referral Whois (RFC 1714/2167) is also provided.

Requirements

phpWhois requires PHP 4.3.0 or better with OpenSSL support to work properly. Without SSL support you will not be able to query domains which do not have a whois server but that have a https based whois. Also, you can run it in lower PHP versions but without timeout control. phpWhois will not work with PHP versions below 4.1.0

Installation

Basically, untar the distribution somewhere outside your server's document root and make sure the directory is listed in 'include_path' in your php.ini file, server configuration or in an .htaccess file. If you want to test it using a web browser just copy example.php and whois.icon.png anywhere on your server's document root and try it.

phpWhois is not a PHP aplication is a class that can be used in applications. There is no need to make the installation folder accesible to anyone but PHP, nevertheless you can install it inside your server's document root if you like, it will work without problems or security risks.

Example usage

(see example.php)

include('whois.main.php');

$whois = new Whois(); $result = $whois->Lookup('example.com'); echo "

";
print_r($result);
echo "
";

What you can query

You can use phpWhois to query domain names, ip addresses and other information like AS, i.e, both of the following examples work:

$whois = new Whois(); $result = $whois->Lookup('example.com');

$whois = new Whois(); $result = $whois->Lookup('62.97.102.115');

$whois = new Whois(); $result = $whois->Lookup('AS220');

Notes

There is an extended class called "whois.utils.php" which contains a debugging function called showObject(), if you showObject($result) it will output the total layout of the returned object to the web browser.

The latest version of the package and a demo script resides at http://phpwhois.sourceforge.net/

There is also be an article describing the package on devshed.com at http://www.devshed.com/Server_Side/PHP/whois/

Support/Patches

If you're really stuck and can't figure something out, or you want to contribute an extended class for one of the TLD's, file a patch or support request in the SourceForge tracker. One of the developers will get around to applying or responding. http://sourceforge.net/projects/phpwhois

Credits

Mark Jeftovic markjr@easydns.com David Saez Padros david@ols.es Ross Golder ross@golder.org