gemorroj/phpwhois-lite

dev-master 2025-04-02 16:31 UTC

This package is auto-updated.

Last update: 2025-04-02 16:31:53 UTC


README

License Latest Stable Version Continuous Integration

TODO:

Features:

  • WHOIS info for domains, IPv4/IPv6, AS
  • Support national domains (президент.рф for example)
  • Follow to registrar WHOIS servers (whois.crsnic.net -> whois.nic.ru for example)
  • Force custom WHOIS server

Requirements:

  • PHP >= 8.2
  • ext-curl

Installation:

composer require gemorroj/phpwhois-lite

Example:

<?php
use PHPWhoisLite\Whois;
use PHPWhoisLite\WhoisClient;
use Psr\Log\NullLogger;
use Symfony\Component\Cache\Adapter\FilesystemAdapter;

$logger = new NullLogger();
$cache = new FilesystemAdapter('phpwhois-lite', 60); // install symfony/cache

$whoisClient = new WhoisClient(cache: $cache, logger: $logger);
$whois = new Whois($whoisClient);
// $data = $whois->process('127.0.0.1');
// $data = $whois->process('192.168.0.0/24');
// $data = $whois->process('2001:0db8:85a3:0000:0000:8a2e:0370:7334');
// $data = $whois->process('AS220');
// $data = $whois->process('sirus.su', 'whois.tcinet.ru'); // custom whois server
$data = $whois->process('vk.com');

print_r($data);
/*
PHPWhoisLite\Data Object
(
    [raw] => Domain Name: VK.COM
Registry Domain ID: 3206186_DOMAIN_COM-VRSN
...

    [server] => whois.nic.ru:43
    [type] => PHPWhoisLite\QueryTypeEnum Enum:string
        (
            [name] => DOMAIN
            [value] => domain
        )

)
 */