comoser geoip2/geoip2 获取ip地理位置信息

1305
|
2019-12-30 21:03:00

1.composer 安装 geoip2

composer require geoip2/geoip2

2.下载city数据库文件

地址:http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz

解压到指定文件夹

3.使用

#官方示例代码

require_once 'vendor/autoload.php';
use GeoIp2\Database\Reader;

// This creates the Reader object, which should be reused across
// lookups.
$reader = new Reader('/usr/local/share/GeoIP/GeoIP2-City.mmdb');

// Replace "city" with the appropriate method for your database, e.g.,
// "country".
$record = $reader->city('128.101.101.101');

print($record->country->isoCode . "\n"); // 'US'
print($record->country->name . "\n"); // 'United States'
print($record->country->names['zh-CN'] . "\n"); // '美国'

print($record->mostSpecificSubdivision->name . "\n"); // 'Minnesota'
print($record->mostSpecificSubdivision->isoCode . "\n"); // 'MN'

print($record->city->name . "\n"); // 'Minneapolis'
print($record->city->names['zh_cn'] . "\n"); //获取城市中文名称

print($record->postal->code . "\n"); // '55455'

print($record->location->latitude . "\n"); // 44.9733
print($record->location->longitude . "\n"); // -93.2323

print($record->traits->network . "\n"); // '128.101.101.101/32'

#更多示例 https://packagist.org/packages/geoip2/geoip2