tuandm / geoip2
Extended MaxMind GeoIP2 PHP API
Installs: 8 441
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- geoip2/geoip2: ~2.0
This package is auto-updated.
Last update: 2024-10-26 12:39:38 UTC
README
Full package for GeoIP2-PHP
This library is a wrapper of https://github.com/maxmind/GeoIP2-php which uses to get geo information from IP. The database file is included. No need to download the database file (http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.tar.gz) and construct the Reader instance with the file path.
use Tuandm\Database\Reader;
include_once "vendor/autoload.php";
$reader = new Reader();
// Or construct with mmdb file
// $reader = new Reader('/path/to/mmdb_file');
$record = $reader->city('52.192.103.163');
echo $record->city->name; // Tokyo
// We can also create Reader instance for reading country database
$reader = Reader::forCountry();
$record = $reader->country('52.192.103.163');