chibitools / ip
IPIP.net officially supported IP database ipdb format parsing library
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: 2026-03-29 00:48:03 UTC
README
(Maintained by 箱子)
镐京内使用的通过 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 目录
Unit test,可以用以下命令运行
# at project root folder
composer install
vendor/bin/phpunit --bootstrap vendor/autoload.php unittest/