09/03
2016
Wallogit.com
2017 © Pedro Peláez
Whois class
PHP class to retrieve WHOIS information., (*1)
composer require boltegg/whois @dev
<?php $whois = new \Whois(); $domain = 'google.com'; $whois_result = $whois->getInfo($domain); echo $whois_result;
<?php
$whois = new \Whois();
if ($whois->isAvailable($domain)) {
echo "Domain is available\n";
} else {
echo "Domain is registered\n";
}