centralnic-reseller/idn-converter
Composer 安装命令:
composer require centralnic-reseller/idn-converter
包简介
PHP library to convert Domain Names correctly from IDN to Punycode, and vice-versa also offers TR46 processing.
README 文档
README
The IDN Converter PHP Library provides a simple and efficient solution for converting Internationalized Domain Names (IDNs) to Punycode and vice versa in PHP applications. With the ConverterFactory class, developers can seamlessly handle domain string conversions between Unicode and Punycode formats, ensuring compatibility and consistency across different systems.
Key Features:
- Convert domain strings to Unicode and Punycode formats effortlessly.
- Supports conversion of single domain strings as well as bulk conversion of multiple domains.
- Intuitive API with easy-to-use methods for domain conversion.
- Comprehensive API documentation for easy integration and usage.
Get Started: Install the library via Composer and follow the usage examples in the README to start converting domain strings efficiently in your PHP projects.
Requirements
- PHP 8.3 or higher
ext-intl,ext-mbstringandext-json
Installation
You can install the IDN Converter PHP Library via Composer. Run the following command in your terminal:
composer require centralnic-reseller/idn-converter
Use Cases
- Domain Conversion: Convert domain strings between Unicode and Punycode formats to ensure compatibility and consistency across different systems.
Usage
1. Convert a Domain String to Unicode
<?php use CNIC\IDNA\Factory\ConverterFactory; // Convert a domain string to Unicode format $domain = "example.com"; $unicodeDomain = ConverterFactory::toUnicode($domain); echo "Unicode Domain: $unicodeDomain\n";
2. Convert a Domain String to Punycode
<?php use CNIC\IDNA\Factory\ConverterFactory; // Convert a domain string to Punycode format $unicodeDomain = "example.com"; $punycodeDomain = ConverterFactory::toASCII($unicodeDomain); echo "Punycode Domain: $punycodeDomain\n";
3. Convert Multiple Domain Strings
<?php use CNIC\IDNA\Factory\ConverterFactory; // Convert multiple domain strings to Unicode and Punycode formats $domains = ["example.com", "münchen.de", "рф.ru"]; $convertedDomains = ConverterFactory::convertBulk($domains); foreach ($convertedDomains as $domain) { echo "Unicode Domain: {$domain['idn']}, Punycode Domain: {$domain['punycode']}\n"; }
API Documentation
### `ConverterFactory::toUnicode($keyword, $options = [])` Converts a domain string to Unicode format. - **Parameters:** - `$keyword` (string): The domain string to convert. - `$options` (array): Additional options for the conversion process (optional). - **Returns:** The converted domain in Unicode format, or `false` if the keyword is empty. ### `ConverterFactory::toASCII($keyword, $options = [])` Converts a domain string to Punycode format. - **Parameters:** - `$keyword` (string): The domain string to convert. - `$options` (array): Additional options for the conversion process (optional). - **Returns:** The converted domain in Punycode format, or `false` if the keyword is empty. ### `ConverterFactory::convert($keywords, $options = [])` Converts a single domain string (or a list of domain strings) to both Unicode and Punycode formats. - **Parameters:** - `$keywords` (string|array): The domain string, or a list of domain strings, to convert. - `$options` (array): Additional options for the conversion process (optional). - **Returns:** An array with `idn` and `punycode` entries; for a list input, one such array per input keyword, keyed like the input. ### `ConverterFactory::convertBulk($keywords, $options = [])` Converts a list of domain strings to both Unicode and Punycode formats, preserving the input keys. - **Parameters:** - `$keywords` (array): The domain strings to convert. - `$options` (array): Additional options for the conversion process (optional). - **Returns:** One array with `idn` and `punycode` entries per input keyword, keyed like the input.
Development
After cloning the repository, install the dev dependencies with composer install. The following Composer scripts are available:
| Script | Description |
|---|---|
composer phpcs |
Check coding style against PSR-12 with PHP_CodeSniffer |
composer codefix |
Automatically fix coding style violations |
composer phpstan |
Run PHPStan static analysis (level 8) |
composer psalm |
Run Psalm static analysis (level 2) |
composer lint |
Run PHPCS, PHPStan and Psalm together |
composer rector |
Preview the changes Rector would make, without applying them |
composer rector:fix |
Apply automated modernization rules with Rector |
composer test |
Run the PHPUnit test suite |
composer coverage |
Run the test suite with HTML coverage output |
License: This library is distributed under the MIT License, allowing for flexibility in usage and modification.
centralnic-reseller/idn-converter 适用场景与选型建议
centralnic-reseller/idn-converter 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 39.37k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 03 月 22 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「library」 「idna」 「convert」 「domains」 「punycode」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 centralnic-reseller/idn-converter 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 centralnic-reseller/idn-converter 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 centralnic-reseller/idn-converter 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A library for encoding and decoding internationalized domain names
A library for encoding and decoding internationalized domain names
Library for International Domain Names (IDNA) 2008
An implementation of UTS#46 Unicode IDNA Compatibility Processing.
idna-convert library based on http://idnaconv.phlymail.de/
A library for encoding and decoding internationalized domain names
统计信息
- 总下载量: 39.37k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 32
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-03-22