https://github.com/regru/php-whois
PHP class to retrieve WHOIS information.
https://github.com/regru/php-whois
Last synced: about 1 month ago
JSON representation
PHP class to retrieve WHOIS information.
- Host: GitHub
- URL: https://github.com/regru/php-whois
- Owner: regru
- Created: 2012-09-26T07:01:47.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-01-09T15:03:44.000Z (over 1 year ago)
- Last Synced: 2025-05-02T04:03:20.829Z (about 2 months ago)
- Language: PHP
- Homepage:
- Size: 61.5 KB
- Stars: 364
- Watchers: 66
- Forks: 191
- Open Issues: 50
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
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";
}```