Heray-Was-Here
Server : Apache
System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : calvet ( 273824)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /usr/share/doc/perl-Geo-IP/example/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/doc/perl-Geo-IP/example/city.pl
#!/usr/bin/perl

use strict;
use warnings;

use autodie;

use Geo::IP;

my $gi
    = Geo::IP->open( '/usr/local/share/GeoIP/GeoIPCity.dat', GEOIP_STANDARD );

while ( my $host = <DATA> ) {
    chomp $host;
    my $r = $gi->record_by_name($host);
    if ($r) {
        print join(
            "\t",
            $r->country_code, $r->country_name, $r->city,
            $r->region,       $r->region_name,  $r->postal_code,
            $r->latitude,     $r->longitude,    $r->metro_code,
            $r->area_code
        ) . "\n";
    }
    else {
        print "UNDEF\n";
    }
}

__DATA__
12.10.1.4
0.0.0.0
66.108.94.158
yahoo.com
amazon.com
4.2.144.64
24.24.24.24
80.24.24.24

Hry