pandi-id/php-epp-id
Composer 安装命令:
composer require pandi-id/php-epp-id
包简介
A High Level EPP (Extensible Provisioning Protocol) TCP/SSL Client for PHP
README 文档
README
This is a modified files from AfriCC
php-epp-id is a High Level Extensible Provisioning Protocol (EPP) TCP/SSL client written in modern PHP.
Released under the GPLv3 License, feel free to contribute (fork, create meaningful branchname, issue pull request with thus branchname)!
Requirements
- PHP 5.5+
- php-ext-intl
- php-ext-openssl
Features
- modern PHP standards
- high-level usage (Plug & Play)
- simplified client (auto login/logout, auto inject clTRID)
- SSL (+local-cert)
- XPath like setter to simplify the creation of complex XML structures
- XML based responses for direct traversal via XPath
- RFC 5730, RFC 5731, RFC 5732, RFC 5733, RFC 5734 & RFC 3915
Install
Via Composer
$ composer require pandi-id/php-epp-id
Usage
See the examples folder for a more or less complete usage reference.
Basic Client Connection
this will automatically login on connect() and logout on close()
<?php require 'vendor/autoload.php'; use Pandi\EPP\Client as EPPClient; $epp_client = new EPPClient([ 'host' => 'epptest.org', 'username' => 'foo', 'password' => 'bar', 'services' => [ 'urn:ietf:params:xml:ns:domain-1.0', 'urn:ietf:params:xml:ns:contact-1.0' ], 'debug' => true, ]); try { $greeting = $epp_client->connect(); } catch(Exception $e) { echo $e->getMessage() . PHP_EOL; unset($epp_client); exit(1); } $epp_client->close();
Create Frame Objects
setXXX() indicates that value can only be set once, re-calling the method will overwrite the previous value.
addXXX() indicates that multiple values can exist, re-calling the method will add values.
<?php require 'vendor/autoload.php'; use Pandi\EPP\Frame\Command\Create\Host as CreateHost; $frame = new CreateHost; $frame->setHost('ns1.example.com'); $frame->setHost('ns2.example.com'); $frame->addAddr('8.8.8.8'); $frame->addAddr('8.8.4.4'); $frame->addAddr('2a00:1450:4009:809::1001'); echo $frame; // or send frame to previously established connection $epp_client->sendFrame($frame);
Parse Response
You can either access nodes directly by passing through a xpath or use the data() Method which will return an assoc array.
use Pandi\EPP\Frame\Command\Check\Domain as DomainCheck; use Pandi\EPP\Frame\Response; $frame = new DomainCheck; $frame->addDomain('example.org'); $frame->addDomain('example.net'); $frame->addDomain('example.com'); $response = $epp_client->request($frame); if (!($response instanceof Response)) { echo 'response error' . PHP_EOL; unset($epp_client); exit(1); } echo $response->code() . PHP_EOL; echo $response->message() . PHP_EOL; echo $response->clientTransactionId() . PHP_EOL; echo $response->serverTransactionId() . PHP_EOL; $data = $response->data(); if (empty($data) || !is_array($data)) { echo 'empty response data' . PHP_EOL; unset($epp_client); exit(1); } foreach ($data['chkData']['cd'] as $cd) { printf('Domain: %s, available: %d' . PHP_EOL, $cd['name'], $cd['@name']['avail']); }
Credits
License
php-epp-id is released under the GPLv3 License. See the bundled LICENSE file for details.
pandi-id/php-epp-id 适用场景与选型建议
pandi-id/php-epp-id 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 437 次下载、GitHub Stars 达 5, 最近一次更新时间为 2019 年 07 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「client」 「tcp」 「registry」 「registrar」 「domains」 「epp」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 pandi-id/php-epp-id 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 pandi-id/php-epp-id 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 pandi-id/php-epp-id 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Link Registry bundle for Contao Open Source CMS
Flexible JSON RPC v2 client for PHP written in object-oriented style
Registry service.
Zend Framework 1 Registry package
Mock PSR-18 HTTP client
Registry Component provides a fluent, object-oriented interface for storing data globally in a well managed fashion, helping to prevent global meltdown.
统计信息
- 总下载量: 437
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 5
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0
- 更新时间: 2019-07-22