PHP.nl

geoip_country_name_by_name

geoip_country_name_by_name

Get the full country name

string **geoip_country_name_by_name** string $hostname

The function will return the full country name corresponding to a hostname or an IP address. geoip_country_name_by_name

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

Returns the country name 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_name_by_name('www.example.com');
if ($country) {
    echo 'This host is located in: ' . $country;
}
?>
This host is located in: United States

geoip_country_code_by_name``geoip_country_code3_by_name