looking4soul / ipgeo
Find geo location of ip
1.0.1
2016-11-25 13:45 UTC
Requires
- php: >=5.4.0
- league/csv: ^8.1.2
- predis/predis: ^1.1.1
Requires (Dev)
- phpunit/phpunit: ~4.8
This package is not auto-updated.
Last update: 2025-03-24 17:11:59 UTC
README
#IpGeo
Find geo location of ip.
##Usage
###Install
composer install
###Set Up Redis
start up redis on 127.0.0.1:6379
###Download GeoLite2
http://dev.maxmind.com/geoip/geoip2/geolite2/
###Import Ip Geo Into Redis
<?php require 'vendor/autoload.php'; $block = 'path/to/GeoLite2-City-Blocks-IPv4.csv'; $location = 'path/to/GeoLite2-City-Locations-zh-CN.csv'; $ipgeo = new \Looking4soul\IpGeo\IpGeo(); $ipgeo->import($block, $location);
###Search City by Ip
<?php require 'vendor/autoload.php'; $ipgeo = new \Looking4soul\IpGeo\IpGeo(); var_dump($ipgeo->find_city_by_ip('140.237.24.176')); /*expected output is array of city and country in zh-CN. array(2) { [0]=> string(0) "" [1]=> string(6) "中国" } */
##License
The MIT License (MIT).