flashbag / php-whois

PHP class to retrieve WHOIS information.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

php-whois

PHP class to retrieve WHOIS information.

Example of usage

<?php

$sld = 'reg.ru';

$domain = new Phois\Whois\Whois($sld);

$whois_answer = $domain->info();

echo $whois_answer;

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

About

PHP class to retrieve WHOIS information.


Languages

Language:PHP 100.0%