showapp/tld-database
Composer 安装命令:
composer require showapp/tld-database
包简介
Database abstraction for Public Suffix List
README 文档
README
Please use https://github.com/jeremykendall/php-domain-parser.
TLDDatabase
Abstraction layer for Public Suffix List in PHP. Used by TLDExtract.
Main idea of library provide easy and fast access to actual database of Public Suffix List. Library always supplied with actual database.
This package is compliant with PSR-1, PSR-2, PSR-4. If you notice compliance oversights, please send a patch via pull request.
Requirements
The following versions of PHP are supported:
- PHP 5.5
- PHP 5.6
- PHP 7.0
- PHP 7.1
- HHVM
Basic usage
First of all you need load Store class.
$store = new \LayerShifter\TLDDatabase\Store();
For check existence of entry in database you need use isExists method:
$store->isExists(string $suffix) : bool; $store->isExists('com'); // true $store->isExists('comcom'); // false
Note: suffix must be without leading dot.
For get type of suffix you need use getType method:
For check existence of entry in database you need use isExists method:
$store->isExists(string $suffix): int; $store->getType('com'); // \LayerShifter\TLDDatabase\Store::TYPE_ICANN = 1 $store->getType('s3.amazonaws.com'); // \LayerShifter\TLDDatabase\Store::TYPE_PRIVATE = 2
If entry doesn't exists method will throw exception, else it will return one of integer constants:
\LayerShifter\TLDDatabase\Store::TYPE_ICANN;\LayerShifter\TLDDatabase\Store::TYPE_PRIVATE;
For direct check of type you can use isICANN or isPrivate method.
$store->isICANN(string $suffix) : bool; $store->isICANN'com'); // true $store->isICANN('s3.amazonaws.com'); // false $store->isPrivate(string $suffix) : bool; $store->isPrivate('com'); // false $store->isPrivate('s3.amazonaws.com'); // true
Advanced usage
There are some cool features for developers.
Custom database
If you need operate with custom (non-packaged) database you simply need to add argument to Store constructor.
$store = new \LayerShifter\TLDDatabase\Store(string $filename); $store = new \LayerShifter\TLDDatabase\Store(__DIR__ . '/cache/datatabase.php');
Update
If you use custom database you need update it 😉 So, you can use Update class.
$update = new \LayerShifter\TLDDatabase\Update(string $filename); $update = new \LayerShifter\TLDDatabase\Update(__DIR__ . '/cache/datatabase.php'); $update->run();
HTTP-adapter
Basically library uses cURL adapter for updates, but you can use custom adapter.
class customHttp implements \LayerShifter\TLDDatabase\Http\AdapterInterface { public function get() {} } $update = new \LayerShifter\TLDDatabase\Update(__DIR__ . '/cache/datatabase.php', 'customHttp'); $update->run();
Install
Via Composer
$ composer require layershifter/tld-database
Testing
$ composer test
Versioning
Library uses SemVer versioning. Where:
- major makes incompatible API changes;
- minor adds functionality, fully backwards-compatible;
- patch is update of database from Public Suffix List.
Database has every week update cycle.
Contributing
Please see CONTRIBUTING and CONDUCT for details.
License
This library is released under the Apache 2.0 license. Please see License File for more information.
showapp/tld-database 适用场景与选型建议
showapp/tld-database 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 21 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 02 月 17 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「Public Suffix List」 「PSL」 「domain database」 「tld database」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 showapp/tld-database 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 showapp/tld-database 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 showapp/tld-database 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Public Space Plugin for CakePHP
Generates URLs for public Puli resources.
Easily provide front-end sorting controls for SilverStripe lists
Reusable PHP traits for HTML rendering components: attribute management, content, templates, and prefix/suffix/label collections.
A block to display a list of links to child pages, or pages in current level
A PHP library to encrypt/decrypt secrets using OpenSSL.
统计信息
- 总下载量: 21
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 18
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2023-02-17
