bebeboutik/modules/fraud/vendor/localisation/sample_netspeedcell.php
Srv Bebeboutik 6c0978166c add modules
2016-01-04 12:49:26 +01:00

15 lines
229 B
PHP
Executable File

#!/usr/bin/php -q
<?php
include("geoip.inc");
$gi = geoip_open("/usr/local/share/GeoIP/GeoIPNetSpeedCell.dat",GEOIP_STANDARD);
$netspeed = geoip_name_by_addr($gi,"24.24.24.24");
print $netspeed . "\n";
geoip_close($gi);
?>