aldin-sxr/ip-format-tools
Composer 安装命令:
composer require aldin-sxr/ip-format-tools
包简介
A collection of utilities for working with IPv4/IPv6 addresses.
README 文档
README
This is a small collection of useful methods related to working with IP addresses. Right now, the library provides the ability to convert both IPv4 and IPv6 addresses to long integers, as well as vice versa. Moreover, the library also provides a way to represent IPv4 addresses in IPv6 format (e.g. 34.26.0.75 => ::ffff:221a:4b)
Installation
The library is available via Composer.
composer require aldin-sxr/ip-format-tools
After installing, include vendor/autoload.php and the IPFormat namespace to your project.
<?php require_once 'vendor/autoload.php'; use IPFormat\IPFormat;
Please note that the library requires either the GMP or BCMath extension for working with large integers (which are seen in IPv6). GMP is recommended, as it offers a better performance.
Usage
The library offers three main methods:
IPFormat::ip_to_long()IPFormat::long_to_ip()IPFormat::ipv4_to_ipv6()
ip_to_long() takes an IPv4 or IPv6 address and returns a corresponding long integer.
echo IPFormat::ip_to_long('89.0.245.117'); // 1493235061 echo IPFormat::ip_to_long('fd44:5ff2:3::76cd'); // 336649705122095386261522076515346446029
long_to_ip() takes a long integer and returns a corresponding IPv4 or IPv6 address.
echo IPFormat::long_to_ip(45678892); // 2.185.1.44 echo IPFormat::long_to_ip('567235998141'); // ::84:11e6:71bd
ipv4_to_ipv6() takes an IPv4 address and returns in one of the three IPv6 formats.
The compressed flag (default) returns a compressed IPv6 address (leading zeroes are ommitted, and groups of zeroes are replaced with ::). The shortened flag shortens groups of zeroes to a single zero, but does not omit groups from the address. The expanded flag returns the full, expanded IPv6 address.
echo IPFormat::ipv4_to_ipv6('34.26.0.75', 'compressed'); // ::ffff:221a:4b echo IPFormat::ipv4_to_ipv6('34.26.0.75', 'shortened'); // 0:0:0:0:0:ffff:221a:004b echo IPFormat::ipv4_to_ipv6('34.26.0.75', 'expanded'); // 0000:0000:0000:0000:0000:ffff:221a:004b
Documentation
Library documentation was generated using phpDocumentor, and is available at: https://aldin-sxr.github.io/ip-format-tools/
Testing
All library methods come with several unit tests in PHPUnit, which are available under tests/unit.
License
The library is licensed under the MIT license. See the LICENSE file for details.
aldin-sxr/ip-format-tools 适用场景与选型建议
aldin-sxr/ip-format-tools 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 45 次下载、GitHub Stars 达 1, 最近一次更新时间为 2019 年 10 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 aldin-sxr/ip-format-tools 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 aldin-sxr/ip-format-tools 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 45
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2019-10-13