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: 1 day 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 (about 1 year ago)
- Last Synced: 2025-01-11T13:04:59.767Z (8 days ago)
- Language: PHP
- Homepage:
- Size: 61.5 KB
- Stars: 364
- Watchers: 67
- 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";
}```