chibitools / ip
IPIP.net 官方支持的 IP 数据库 ipdb 格式解析库
v1.0.0
2019-05-31 13:38 UTC
Requires
- php: >=5.4.0
Requires (Dev)
- phpunit/phpunit: ^4.8
This package is auto-updated.
Last update: 2024-09-29 04:49:05 UTC
README
(由 箱子 维护)
镐京内使用的通过 IP 查询城市的 PHP 基础库
使用方法
/** * return city name of the given ip or null if not found * @param string $ip IP address in string format * @return Array|null $ipCityInfo */ $city = Baixing\Util\IP::getIpCityInfoCN($ip); $city = [ 0 => '中国', 1 => '陕西', 2 => '西安' ];
目录结构
.
├──composer.json
├──src\
└──unittest\
src
目录
IP 查询源码
unittest
目录
单元测试,可以使用以下命令运行
# at project root folder
composer install
vendor/bin/phpunit --bootstrap vendor/autoload.php unittest/