PHP class to retrieve WHOIS information.
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";
}