ivoglent / ip2c
此包的最新版本(1.0.0)没有可用的许可证信息。
将IP地址转换为国家代码或名称
1.0.0
2019-08-30 02:45 UTC
This package is auto-updated.
Last update: 2024-08-29 05:00:51 UTC
README
检测IP地址的实时区域位置、国家代码和国家名称。
用法
require 'vendor/autoload.php'; use ivoglent\ip2c\IpLocator; $ip = '186.95.255.255; $ipLocator = new IpLocator($ip); if ($ipLocator->analysis()) { echo sprintf('%s : %s, %s, %s', $ip, $ipLocator->getArea(), $ipLocator->getCountryCode(), $ipLocator->getCoutryName()) . PHP_EOL; } else { echo 'Can not detect this IP address' . PHP_EOL; }