Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17136 программистов и 1833 робота. Сейчас ищут 1692 программиста ...
Net_GeoIP::lookupOrg()
Вернуться к: Net_GeoIP
Net_GeoIP::lookupOrg()
Net_GeoIP::lookupOrg() – returns the name of the organization or ISP for the given IP address.
Synopsis
require_once "Net/GeoIP.php";
string lookupOrg() ( string $addr )
This method returns the name of the organization or of the ISP which has registered the IP address range that contains the specified IP address. It works only with a non-free Organization/ISP database.
Looking up organization name
<?php
require_once "Net/GeoIP.php";
$geoip = Net_GeoIP::getInstance("/path/to/geoipdb.dat");
try {
echo $geoip->lookupOrg($_SERVER['REMOTE_ADDR']);
} catch (Exception $e) {
// Handle exception
}
?>
Throws
This method throws an exception if the IP address is invalid or the database type is wrong.
Вернуться к: Net_GeoIP