geoip_country_name_by_name ()
La funzione geoip_country_name_by_name () può ottenere il nome completo del paese.
Sintassi
string geoip_country_name_by_name( string $hostname )
La funzione geoip_country_name_by_name () può restituire il nome completo del paese corrispondente al nome host o all'indirizzo IP.
La funzione geoip_country_name_by_name () può restituire il nome del paese in caso di successo o false se l'indirizzo non può essere trovato nel database.
Esempio
<?php
$country = geoip_country_name_by_name("www.tutorialspoint.com");
if($country) { echo "This host is located in: " . $country;
}
?>