php使用GeoIP库实例

前端之家收集整理的这篇文章主要介绍了php使用GeoIP库实例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

需要注意的是maxmind是geoip数据库的提供方, 同时也提供了很多语言的sample和api说明文档。 比如PHP,和PHP的geoip库是有很大区别的,包含使用方式,接口函数PHP官方的geoip需要配置PHP环境,加载geoip.dll库,并在PHP.ini中指定GEOIP库地址。 maxmind提供一系列 .inc 和 .PHP 对环境无依赖,只要支持PHP,直接require后即可使用。

一、GEOIP数据库

http://dev.maxmind.com/geoip/geolite 细分到国家:GeoLite Country 细分到城市:GeoLite City

二、PHP官方geoip.dll库

下载dll http://windows.PHP.net/downloads/pecl/releases/geoip/1.0.8/ 修改PHP.ini,启用geoip库:

代码如下:
PHP_geoip.dll
追加geoip段,指定数据库位置:
代码如下:
PHP5.3\geo\"

测试代码

注意geoip.dll中使用的 GeoIPCity.dat 即 GeoLiteCity.dat,用的时候注意看提示

代码如下:

三、MaxMind官方PHP文件函数

文档和示例:http://dev.maxmind.com/geoip/downloadable 修改maxmind示例中 sample.PHP 和 sample_city.PHP 中 GeoIP.dat/GeoLiteCity.dat 路径为你自己的路径 同一目录用 “./GeoIP.dat” 或 “./GeoLiteCity.dat” 即可。 详细到国家

代码如下:

详细到国家城市

代码如下:
$record = geoip_record_by_addr($gi,"8.8.8.8");
print $record->country_code . " " . $record->country_code3 . " " . $record->country_name . "\n";
print $record->region . " " . $GEOIP_REGION_NAME[$record->country_code][$record->region] . "\n";
print $record->city . "\n";
print $record->postal_code . "\n";
print $record->latitude . "\n";
print $record->longitude . "\n";
print $record->metro_code . "\n";
print $record->area_code . "\n";
print $record->continent_code . "\n";

print "\n-----\n";
$record = geoip_record_by_addr($gi,"61.139.2.69");
print $record->country_code . " " . $record->country_code3 . " " . $record->country_name . "\n";
print $record->region . " " . $GEOIP_REGION_NAME[$record->country_code][$record->region] . "\n";
print $record->city . "\n";
print $record->postal_code . "\n";
print $record->latitude . "\n";
print $record->longitude . "\n";
print $record->metro_code . "\n";
print $record->area_code . "\n";
print $record->continent_code . "\n";
geoip_close($gi);

看自己开发环境和具体情况决定用哪种

原文链接:https://www.f2er.com/php/24307.html

猜你在找的PHP相关文章