PHP.nl

geoip_continent_code_by_name

geoip_continent_code_by_name

Get the two letter continent code

string **geoip_continent_code_by_name** string $hostname

The function will return the two letter continent code corresponding to a hostname or an IP address. geoip_continent_code_by_name

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

Returns the two letter continent 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
$continent = geoip_continent_code_by_name('www.example.com');
if ($continent) {
    echo 'This host is located in: ' . $continent;
}
?>
This host is located in: NA

geoip_country_code_by_name