定制 librarymarket/maxmind-db-reader 二次开发

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

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

librarymarket/maxmind-db-reader

最新稳定版本:1.0.1

Composer 安装命令:

composer require librarymarket/maxmind-db-reader

包简介

An unofficial library to facilitate reading the MaxMind database file format.

README 文档

README

PHPStan Maintainability

An unofficial library to facilitate reading the MaxMind database file format.

Why?

MaxMind's open source PHP library for reading *.mmdb files is incompatible with the GNU General Public License, version 2. Because of this, we decided to implement our own database reader based off of MaxMind's open file format specifications and their Ruby library for the same purpose (which was dual-licensed under MIT at the time this library was written).

Requirements

ext-bcmath or ext-gmp may be required for decoding unsigned integers of more than 31 bits in length, but this depends on the contents of the database you're trying to read.

Usage

  1. Create an instance of the database reader by providing the path to your MaxMind database file on disk.
  2. Invoke Reader::searchForAddress(string $ip_address, int &$depth = 0): array to retrieve information about the IP address from the database.
    • If the IP address wasn't found in the database, an empty array is returned.
    • If the optional second argument is supplied, it will be populated with the bit depth at which the address was found. This is the netmask of the resulting information.
$reader = new \LibraryMarket\MaxMind\Database\Reader('/path/to/database.mmdb');

// Search for an IP address in human-readable format.
$reader->searchForAddress('127.0.0.1');
$reader->searchForAddress('::1');

License

Copyright (c) 2022 Library Solutions, LLC (et al.).

This is free software, licensed under the MIT License. See LICENSE.txt in this project's root directory for the full license text.

统计信息

  • 总下载量: 26.91k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 4
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-01-27