mirror of
https://github.com/php-win-ext/MaxMind-DB-Reader-php.git
synced 2026-03-24 17:12:17 +01:00
17 lines
253 B
PHP
17 lines
253 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require __DIR__ . '/../autoload.php';
|
|
|
|
use MaxMind\Db\Reader;
|
|
|
|
$ipAddress = '24.24.24.24';
|
|
$databaseFile = 'GeoIP2-City.mmdb';
|
|
|
|
$reader = new Reader($databaseFile);
|
|
|
|
print_r($reader->get($ipAddress));
|
|
|
|
$reader->close();
|