黑帽联盟

标题: PHP获取ip对应地区和使用网络类型的方法 [打印本页]

作者: 定位    时间: 2017-2-15 01:20
标题: PHP获取ip对应地区和使用网络类型的方法
这里测试的时候因为ip168网站禁止,所以试着在原有代码上修改为ip138数据库的数据调用,代码如下:
  1. <?php
  2. //原程序有问题,现修改为ip138数据库
  3. /**
  4. * 获取IP地区
  5. * Enter description here ...
  6. * @param unknown_type $ip
  7. */
  8. function GetArea($ip){
  9.   $url = "http://www.ip138.com/ips8.asp?ip=".$ip."&action=2";
  10.   $contents = file_get_contents($url);
  11.   preg_match_all('|<li>本站主数据:.*</li>|',$contents,$rsR);
  12.   $rsR[0][0] = str_replace("<li>本站主数据:", "", $rsR[0][0]);
  13.   $pos = strpos($rsR[0][0],'</li>');
  14.   $Area = substr_replace($rsR[0][0],'',$pos);
  15.   return $Area;
  16. }
  17. header('Content-type:text/html;Charset=gb2312');
  18. $area = GetArea('218.242.232.194');
  19. print_r($area);
  20. ?>
复制代码





欢迎光临 黑帽联盟 (https://bbs.cnblackhat.com/) Powered by Discuz! X2.5