js獲取客戶端IP及地理位置

 php獲取方法:javascript

  1. 1.<?php     
  2. 2.function get_ip_place(){     
  3. 3.$ip=file_get_contents("http://fw.qq.com/ipaddress");     
  4. 4.$ip=str_replace('"',' ',$ip);     
  5. 5.$ip2=explode("(",$ip);     
  6. 6.$a=substr($ip2[1],0,-2);     
  7. 7.$b=explode(",",$a);     
  8. 8.return $b;     
  9. 9.}     
  10. 10.$ip=get_ip_place();     
  11. 11.print_r($ip);     
  12. 12.?>    


 

js獲取php

DEMO:http://blog.suiyidian.cn/texiao/ipd.htmlhtml

騰訊的IP地址API接口地址:http://fw.qq.com/ipaddress
返回的是數據格式爲:var IPData = new Array(「114.218.183.139″,」",」北京市」);
使用JS代碼進行調取:java

[javascript] view plain copy print ?
  1. <script language="javascript" type="text/javascript" src="http://fw.qq.com/ipaddress">  
  2. </script>    
  3.  <script>document.write("你的IP是:"+IPData[0]+",來自:"+IPData[2]);  
  4. </script>   


騰訊IP,轉UTF-8:json

[javascript] view plain copy print ?
  1. <script type="text/javascript" src="http://fw.qq.com/ipaddress" charset="gb2312"></script>  
  2.   
  3. $(document).ready(function() {  
  4.   
  5.     $("#ip").val(IPData[0]);  
  6.     $("#add").val(IPData[2]);  
  7. })  


 

 

其它獲取方法:測試

新浪的IP地址查詢接口:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js
新浪多地域測試方法:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js&ip=12.130.132.30
搜狐IP地址查詢接口(默認GBK):http://pv.sohu.com/cityjson
搜狐IP地址查詢接口(可設置編碼):http://pv.sohu.com/cityjson?ie=utf-8
搜狐另外的IP地址查詢接口:http://txt.go.sohu.com/ip/soipui

相關文章
相關標籤/搜索