Exemple #1
0
 /**
  * 是发送head头,可以应用在请求统计脚本
  */
 public static function ip2location($paramArr)
 {
     $options = array('ip' => '');
     if (is_array($paramArr)) {
         $options = array_merge($options, $paramArr);
     }
     extract($options);
     include LJL_API_BASE . '/qqwry/iplocation.inc.php';
     $ipClass = new IpArea();
     $location = $ipClass->get($ip);
     return $location;
 }
Exemple #2
0
 public static function ip2location($ip)
 {
     include LJL_API_BASE . '/qqwry/iplocation.inc.php';
     $ipClass = new IpArea();
     $location = $ipClass->get($ip);
     return $location;
 }