Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18876 программистов и 1635 роботов. Сейчас ищет 2071 программист ...
Net_GeoIP::lookupCountryCode()
Вернуться к: Net_GeoIP
Net_GeoIP::lookupCountryCode()
Net_GeoIP::lookupCountryCode() – returns 2-letter country code (e.g. "CA") for specified IP address
Synopsis
require_once "Net/GeoIP.php";
string lookupCountryCode() ( string $addr )
This method returns the 2-letter country code for the given IP address. It works with both the free and the non-free databases.
Looking up the country code
<?php
require_once "Net/GeoIP.php";
$geoip = Net_GeoIP::getInstance("/path/to/geoipdb.dat");
try {
echo $geoip->lookupCountryCode($_SERVER['REMOTE_ADDR']);
} catch (Exception $e) {
// Handle exception
}
?>
Throws
This method throws an exception if the IP address is invalid or if the database type is incorrect.
Вернуться к: Net_GeoIP