我在我的网站上使用地理位置脚本来创建国家/地区和城市位置,每当用户访问我的页面时,该位置都会显示在句子中。但是,该功能未按预期工作,有时会给出错误的国家和城市。
这是地理位置脚本的代码: <script>jQuery.ajax({url:"//freegeoip.net/json/",type:"POST",dataType:"jsonp",success:function(b){jQuery("#findcity").html(b.city);jQuery("#region-code").html(b.region_code);jQuery("#region-name").html(b.region_name);jQuery("#areacode").html(b.areacode);jQuery("#ip").html(b.ip);jQuery("#zipcode").html(b.zipcode);jQuery("#longitude").html(b.longitude);jQuery("#latitude").html(b.latitude);jQuery("#findcountry").html(b.country_name);jQuery("#country-code").html(b.country_code)}});</script>
下一行代码是在正文标签中的句子中突出显示国家和城市 <h4 itemprop=headline align=center>Hello my <span id=findcountry></span> friend, how is <span id=findcity></span> today have got an awesome offer for you.</h4>
目前 freegeoip.net 是调用国家和城市数据的地方,但它们目前经常下降,并因此导致句子出现错别字。
有没有更好的解决方案?
试试这段代码:
注意:从这里创建您的 api 密钥
$remoteIp = $_SERVER['HTTP_HOST'];
$geoLocationUrl="http://api.db-ip.com/addrinfo? addr=$remoteIp&api_key='YOUR API KEY'";
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $geoLocationUrl);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
$auth = curl_exec($curl);
if($auth)
{
$json = json_decode($auth,true);
echo $address = $json['address'];
echo $country =$json['country'];
echo $state =$json['stateprov'];
echo $city =$json['city'];
}
else{
echo 'ERRROR';
}