地理位置显示不同的城市不是很准确



我正在使用地理位置来检测当前未显示确切城市的城市,例如我在班加罗尔,它显示钦奈或有时特里凡南特普拉姆。请让我知道如何使其准确显示当前城市。下面是我的代码 -

function fetch($host) {
    if ( function_exists('curl_init') ) {
        //use cURL to fetch data
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $host);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_USERAGENT, 'geoPlugin PHP Class v1.1');
        $response = curl_exec($ch);
        curl_close ($ch);
    } else if ( ini_get('allow_url_fopen') ) {
        //fall back to fopen()
        $response = file_get_contents($host, 'r');
    } else {
        trigger_error ('geoPlugin class Error: Cannot retrieve data. Either compile PHP with cURL support or enable allow_url_fopen in php.ini ', E_USER_ERROR);
        return;
    }
    return $response;
}
function convert($amount, $float=2, $symbol=true) {
    //easily convert amounts to geolocated currency.
    if ( !is_numeric($this->currencyConverter) || $this->currencyConverter == 0 ) {
        trigger_error('geoPlugin class Notice: currencyConverter has no value.', E_USER_NOTICE);
        return $amount;
    }
    if ( !is_numeric($amount) ) {
        trigger_error ('geoPlugin class Warning: The amount passed to geoPlugin::convert is not numeric.', E_USER_WARNING);
        return $amount;
    }
    if ( $symbol === true ) {
        return $this->currencySymbol . round( ($amount * $this->currencyConverter), $float );
    } else {
        return round( ($amount * $this->currencyConverter), $float );
    }
}

问题不在于你的代码,而在于信息的来源。IP地理位置不是100%准确的,您需要忍受它。最好的补救措施是使用诸如Ipregistry之类的服务(免责声明:我运行该服务(,该服务将来自多个来源的数据相关联,以减少误报并减轻您的体验。

根据您的代码,您似乎在猜测用户的货币。在这种情况下,您可以执行对以下端点的 HTTP 获取:

https://api.ipregistry.co/?key=tryout

并查看响应字段currency

相关内容

  • 没有找到相关文章

最新更新