Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17249 программистов и 1834 робота. Сейчас ищут 1675 программистов ...
Net_GeoIP::lookupRegion()
Вернуться к: Net_GeoIP
Net_GeoIP::lookupRegion()
Net_GeoIP::lookupRegion() – returns the region for given IP address.
Synopsis
require_once "Net/GeoIP.php";
array lookupRegion() ( string $addr )
This method returns an array containing the country code and the region for the specified IP address. It works only with a non-free Region database.
Looking up the region
<?php
require_once "Net/GeoIP.php";
$geoip = Net_GeoIP::getInstance("/path/to/geoipdb.dat");
try {
list($country_code, $region) = $geoip->lookupRegion($_SERVER['REMOTE_ADDR']);
} catch (Exception $e) {
// Handle exception
}
?>
Throws
This method throws an exception if the IP address is invalid.
Вернуться к: Net_GeoIP