定制 utopia-php/domains 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

utopia-php/domains

最新稳定版本:0.10.0

Composer 安装命令:

composer require utopia-php/domains

包简介

Utopia Domains library is simple and lite library for parsing web domains. This library is aiming to be as simple and easy to learn and use.

README 文档

README

Build Status Total Downloads Discord

Utopia Domains library is a simple and lite library for parsing domain names structure. This library is aiming to be as simple and easy to learn and use. This library is maintained by the Appwrite team.

Although this library is part of the Utopia Framework project, it is completely dependency-free and can be used as standalone with any other PHP project or framework.

Getting Started

Install using composer:

composer require utopia-php/domains
<?php

require_once '../vendor/autoload.php';

use Utopia\Domains\Domain;

// demo.example.co.uk

$domain = new Domain('demo.example.co.uk');

$domain->get(); // demo.example.co.uk
$domain->getTLD(); // uk
$domain->getSuffix(); // co.uk
$domain->getRegisterable(); // example.co.uk
$domain->getName(); // example
$domain->getSub(); // demo
$domain->isKnown(); // true
$domain->isICANN(); // true
$domain->isPrivate(); // false
$domain->isTest(); // false

// demo.localhost

$domain = new Domain('demo.localhost');

$domain->get(); // demo.localhost
$domain->getTLD(); // localhost
$domain->getSuffix(); // ''
$domain->getRegisterable(); // ''
$domain->getName(); // demo
$domain->getSub(); // ''
$domain->isKnown(); // false
$domain->isICANN(); // false
$domain->isPrivate(); // false
$domain->isTest(); // true

Utopia Domains parser uses a public suffix PHP dataset auto-generated from the publicsuffix.org. The dataset get periodically updates from us, but you can also manually update it by cloning this library and running the import script with the import command:

php ./data/import.php

Library API

  • get() - Return you full domain name.
  • getTLD() - Return only the top-level-domain.
  • getSuffix() - Return only the public suffix of your domain, for example: co.uk, ac.be, org.il, com, org.
  • getRegisterable() - Return the registered or registrable domain, which is the public suffix plus one additional label.
  • getName() - Returns only the registerable domain name. For example, blog.example.com will return 'example', and demo.co.uk will return 'demo'.
  • getSub() - Returns the full sub domain path for you domain. For example, blog.example.com will return 'blog', and subdomain.demo.co.uk will return 'subdomain.demo'.
  • isKnown() - Returns true if public suffix is know and false otherwise.
  • isICANN() - Returns true if the public suffix is found in the ICANN DOMAINS section of the public suffix list.
  • isPrivate() - Returns true if the public suffix is found in the PRIVATE DOMAINS section of the public suffix list.
  • isTest() - Returns true if the domain TLD is 'locahost' or 'test' and false otherwise.

If you want to parse ordinary web urls then use $host = parse_url($return, PHP_URL_HOST); $domain = new Utopia\Domains\Domain($host); to get the domain object.

Using the Registrar API

<?php

use Utopia\Domains\Registrar;
use Utopia\Domains\Registrar\Contact;
use Utopia\Domains\Registrar\Adapter\OpenSRS;

$opensrs = new OpenSRS(
  'apikey', 
  'apisecret', 
  'username', 
  'password', 
  [
    'ns1.nameserver.com',
    'ns2.nameserver.com',
  ]
);


$reg = new Registrar($opensrs);

$contact = new Contact(
  'firstname',
  'lastname',
  'phone',
  'email',
  'address1',
  'address2',
  'address3',
  'city',
  'state',
  'country',
  'postalcode',
  'org',
  'owner',
);

$domain = 'yourname.com';

$available = $reg->available($domain);
$purchase = $reg->purchase($domain, [$contact]);
$purchase = $reg->purchase($domain, [$contact], 1);
$suggest = $reg->suggest(['yourname', 'yourname1.com'], ['com', 'net', 'org'], 10, 10000, 100);
$domainDetails = $reg->getDomain($domain);
$renew = $reg->renew($domain, 1);
$transfer = $reg->transfer($domain, [$contact]);
$transfer = $reg->transfer($domain, 'authcode', [$contact]);

Library Registrar API

  • available(string $domain): bool - Checks to see if a domain is available for registration.
  • purchase(string $domain, array|Contact $contacts, int $periodYears = 1, array $nameservers = []): Registration - Purchase a domain name and returns a Registration object.
  • suggest(array $query, array $tlds = [], int|null $limit = null, int|null $priceMax = null, int|null $priceMin = null): array - Suggest or search for domain names.
  • getDomain(string $domain): Domain - Get domain details and returns a Domain object.
  • renew(string $domain, int $periodYears): Renewal - Renewal a domain name and returns a Renewal object.
  • transfer(string $domain, string $authCode, array|Contact $contacts, int $periodYears = 1, array $nameservers = []): Registration - Transfer a domain name and returns a Registration object.
  • getAuthCode(string $domain): string - Retrieve the authorization code for a domain.
  • checkTransferStatus(string $domain, bool $checkStatus = true, bool $getRequestAddress = false): TransferStatus - Check the transfer status of a domain.

System Requirements

Utopia Framework requires PHP 8.2 or later. We recommend using the latest PHP version whenever possible.

Authors

Eldad Fux

Copyright and license

The MIT License (MIT) http://www.opensource.org/licenses/mit-license.php

统计信息

  • 总下载量: 496.91k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 51
  • 点击次数: 3
  • 依赖项目数: 9
  • 推荐数: 0

GitHub 信息

  • Stars: 50
  • Watchers: 11
  • Forks: 21
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固