Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/regru/php-whois

PHP class to retrieve WHOIS information.
https://github.com/regru/php-whois

Last synced: 4 months ago
JSON representation

PHP class to retrieve WHOIS information.

Lists

README

        

# php-whois (UNMAINTAINED)

PHP class to retrieve WHOIS information.

## Example of usage

```php

info();

echo $whois_answer;

if ($domain->isAvailable()) {
echo "Domain is available\n";
} else {
echo "Domain is registered\n";
}

```