domain registered information(whois) search.
ドメインのWHOIS情報を検索するライブラリです。
様々なTLD(com/net/jp...)で、広く検索することができます。
With Composer
$ composer require chanshige/whois 'v5.0'
<?php
use Chanshige\WhoisFactory;
use Chanshige\Contracts\WhoisInterface;
$whois = (new WhoisFactory())->newInstance();
/** @see WhoisInterface */
$whois->query('domain-name.example');
$response = $whois->response();
$response->raw(); // return a whois raw data.
::raw()
無加工でそのまま返却されます
::servername()
whois サーバー名
::registrant()
登録者情報
::admin()
管理者情報
::tech()
技術者情報
::billing()
請求者情報
::status()
ドメインステータス
::dates()
ドメイン登録・更新日
::nameserver()
ネームサーバ情報
::isRegistered()
登録済みドメインかどうか
::isReserved()
予約語ドメインかどうか
::isClientHold()
利用制限ドメインかどうか
$ composer test
Feel free to create issues and submit pull requests. For any PR submitted, make sure it is covered by tests or include new tests.
If you discover any security related issues, please email author email instead of using the issue tracker.
MIT