前後臺獲取當前使用者城市【根據IP獲取城市】
阿新 • • 發佈:2019-02-06
這裡用到的是新浪介面http://int.dpool.sina.com.cn/iplookup/iplookup.php
引數:format 返回資料型別 預設返回字串,可賦值 js,json等
引數:ip 預設獲取當前使用者的IP 如果給定 則返回給定IP的地址資訊
前臺寫法:
<script type="text/javascript" src="http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js" charset="gb2312"></script> <script type="text/javascript"> var uinfo = remote_ip_info['city'] ; document.title ="【" + uinfo + "人自己的網站】"; </script>
後臺寫法:
$url = 'http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=json';
$json = file_get_contents($url);
$arr = json_decode($json,true);
echo $arr['city'].人自己的網站';