PHP.nl

geoip_country_code_by_name

geoip_country_code_by_name

Get the two letter country code

string **geoip_country_code_by_name** string $hostname
The  function will return
the two letter country code corresponding to a hostname or an IP address.

geoip_country_code_by_name

hostnameThe hostname or IP address whose location is to be looked-up.

Returns the two letter ISO country code on success, or false if the address cannot be found in the database.

Voorbeeld: A example

This will print where the host example.com is located.

<?php
$country = geoip_country_code_by_name('www.example.com');
if ($country) {
    echo 'This host is located in: ' . $country;
}
?>
This host is located in: US

Let op: > Please see for a complete list of possible return values, including special codes. url.maxmind.iso3166

geoip_country_code3_by_name``geoip_country_name_by_name