我正在使用PHP MaxMind GeoIP
来获取用户的位置。
我确实下载了两个文件进行测试:GeoLiteCity.dat
和GeoIPCity.dat
以下是我的php
代码:
$ip = "189.90.207.67";
$gi = geoip_open("data/GeoLiteCity.dat", GEOIP_STANDARD);
$record = geoip_record_by_addr($gi, $ip);
print "Ip: ".$ip."<br>";
print "Country: ".$record->country_name . "<br>";
print "Region: ".$record->region. "<br>";
print "city: ".$record->city . "<br>";
print "latitude: ".$record->latitude . "<br>";
print "longitude: ".$record->longitude . "<br>";
geoip_close($gi);
结果:
Ip:189.90.207.67国家:巴西地区:城市:纬度:-23.5477经度:-46.6358
返回的坐标与MaxMind不同:
https://www.maxmind.com/en/geoip-demo
ip: 189.90.207.67
我从我的ISP获得的代码中的坐标,与我的不同
GeoIPCity.dat
哪个结果对所有字段都是空的。
为什么网站和我的代码的结果不同?
答案 0 :(得分:0)
在线演示使用商业数据库。您的代码正在查询GeoLite数据库。
您不应期望来自两个不同数据库的结果相同。