geoip_country_code_by_name ()
La funzione geoip_country_code_by_name () può ottenere il codice del paese di due lettere.
Sintassi
string geoip_country_code_by_name( string $hostname )
La funzione geoip_country_code_by_name () può restituire il codice del paese di due lettere corrispondente al nome host o all'indirizzo IP.
Esempio
<?php
$country = geoip_country_code_by_name("www.tutorialspoint.com");
if($country) {
echo "This host is located in:" . $country;
}
?>