当前位置:首页 > PHP教程 > php函数 > 列表

PHP获取IP的地理位置程序代码

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-11 16:07:24 浏览: 评论:0 

PHP获取IP的地理位置都是使用相关函数+正则表达式来获取指定网页中的信息了,下面我整理几个常用的接口与获取方法,有需要了解的朋友可进入参考.

用php file_get_contents 获取ip地址后如何获取地理位置,看下下面代码,使用file_get_contents和fopen必须空间开启allow_url_fopen.

方法:编辑php.ini,设置allow_url_fopen = On,allow_url_fopen关闭时fopen和file_get_contents都不能打开远程文件.

例子,代码如下:

  1. function get_ip_place() 
  2.     $ip=file_get_contents("http://fw.qq.com/ipaddress"); 
  3.     $ip=str_replace('"',' ',$ip); 
  4.     $ip2=explode("(",$ip); 
  5.     $a=substr($ip2[1],0,-2); 
  6.     $b=explode(",",$a); 
  7.     return $b

还有一种办法,代码如下:

  1. function get_ip_arr() 
  2.     $ip=file_get_contents("http://fw.qq.com/ipaddress"); 
  3.     preg_match_all("/"(.*)"/",$ip,$arr); 
  4.     return $arr

返回来的是个数组,里面可以任意去取地区或者是ip.

使用curl:使用curl必须空间开启curl.

方法:windows下修改php.ini,将extension=php_curl.dll前面的分号去掉,而且需要拷贝ssleay32.dll和libeay32.dll到C:/WINDOWS/system32下,Linux下要安装curl扩展.

例子,代码如下:

  1. function getIPLoc($queryIP){ 
  2.     $url = 'http://ip.qq.com/cgi-bin/searchip?searchip1='.$queryIP
  3.     $ch = curl_init($url); 
  4.     curl_setopt($ch,CURLOPT_ENCODING ,'gb2312'); 
  5.     curl_setopt($ch, CURLOPT_TIMEOUT, 10); 
  6.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true) ; // 获取数据返回 
  7.     $result = curl_exec($ch); 
  8.     $result = mb_convert_encoding($result"utf-8""gb2312"); // 编码转换,否则乱码 
  9.     curl_close($ch); 
  10.     preg_match("@<span>(.*)</span></p>@iU",$result,$ipArray); 
  11.     $loc = $ipArray[1]; 
  12.     return $loc
  13. }

Tags: PHP获取IP PHP地理位置

分享到: