Go to English page

ViaThinkSoft CodeLib

Dieser Artikel befindet sich in der Kategorie:
CodeLibProgrammierhilfenPHP

<?php

function getCountryFromIP($ip '') {
    if (empty(
$ip)) {
        
$ip $_SERVER['REMOTE_ADDR'];
    }
    
$out file_get_contents("http://whois.viathinksoft.de/country/$ip");
    if (
$out == '??') return false;
    return 
$out;
}

echo 
"Your country: ".getCountryFromIP();

?>

Dieses Script nutzt die IP-2-Country Software von ViaThinkSoft. Weitere Informationen: http://whois.viathinksoft.de/.
Daniel Marschall
ViaThinkSoft Mitbegründer