big-dream/whois

Whois client.

1.0.0 2019-08-06 03:29 UTC

This package is auto-updated.

Last update: 2024-05-19 18:06:21 UTC


README

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";
}