How create GeoIP functionality in PHP project?

て烟熏妆下的殇ゞ 提交于 2019-12-03 20:14:43

None (only the 'GeoIP.dat' file is needed). To download a free GeoIP Standard Country database, go to http://maxmind.com/download/geoip/database/

Install

Just place the 'geoip.inc' file somewhere according to the 'include_path' directive of your 'php.ini' file, or just place it in the same directory as your PHP scripts.

Usage

Gets country name by hostname :

include("geoip.inc");

$gi = geoip_open("/usr/local/share/GeoIP/GeoIP.dat",GEOIP_STANDARD);

echo geoip_country_code_by_addr($gi, "24.24.24.24") . "\t" .
     geoip_country_name_by_addr($gi, "24.24.24.24") . "\n";
echo geoip_country_code_by_addr($gi, "80.24.24.24") . "\t" .
     geoip_country_name_by_addr($gi, "80.24.24.24") . "\n";

HTH.

Alex Rashkov

Also you can have a look here: MaxMind GeoIP PHP API

PHP has some useful builtin GeoIP-functions. They should be sufficient:

$details = geoip_record_by_name($_SERVER['REMOTE_ADDR']);
echo $details['city'];

I decided to use the free database from http://lite.ip2location.com/ Works better than all the others did so far.

In Linux Environment 1. sudo yum install php56-devel geoip geoip-devel php-pear 2. sudo pecl install geoip 3. extension=geoip.so (add this line in php.ini) 4. move .dat file in /usr/share/GeoIP folder

In Windows Environment 1. move .dll in ext folder 2. move .dat file in apache/bin folder 3. add dll extension in php.ini

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!