web建站教程
     
  1. 首页
  2. 前端UI组件库
  3. AI项目和框架
  4. AIGC工具
  5. 百度echarts
  6. 地图大全
  7. 前端知识
  8. 更多
    vuejs
    js入门
    php入门
    mysql
    wordpress
    织梦cms
    帝国cms
    git教程
    IT知识
    模板大全
    休息站
    AI应用

如何利用php语法查询ip归属地

998 ℃

javascript可以查询ip归属地,那么php可以实现吗?下面web建站小编给大家详细介绍一下!

1、开通接口

ip地址归属地接口服务使用的聚合数据提供的免费接口,可以通过https://www.juhe.cn/docs/api/id/1?s=ipkdcn注册及开通。

2、根据查询的IP地址,查询该IP所属的区域

$appkey = "*********************";

//根据查询的IP地址,查询该IP所属的区域
$url = "http://apis.juhe.cn/ip/ipNew";
$params = [
    "ip" => "192.168.0.1",
    "key" => $appkey,
];
$paramstring = http_build_query($params);
$content = juheHttpRequest($url, $paramstring, 1);
$result = json_decode($content, true);
if ($result) {
  if ($result['error_code'] == 0) {
    echo "国家:{$result['result']['Country']}" . PHP_EOL;
    echo "省份:{$result['result']['Province']}" . PHP_EOL;
    echo "城市:{$result['result']['City']}" . PHP_EOL;
    echo "运营商:{$result['result']['Isp']}" . PHP_EOL;
  } else {
    echo "{$result['error_code']}:{$result['reason']}" . PHP_EOL;
  }
} else {
    echo "请求失败";
}

3、请求接口返回内容

/**
 * 请求接口返回参数介绍
 * @param string $url [请求的URL地址]
 * @param string $params [请求的参数]
 * @param int $ipost [是否采用POST形式]
 * @return  string
 */
function juheHttpRequest($url, $params = false, $ispost = 0)
{
  $httpInfo = array();
  $ch = curl_init();
  
  curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
  curl_setopt($ch, CURLOPT_USERAGENT, 'JuheData');
  curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 3);
  curl_setopt($ch, CURLOPT_TIMEOUT, 5);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  if ($ispost) {
    curl_setopt($ch, CURLOPT_POST, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
    curl_setopt($ch, CURLOPT_URL, $url);
  } else {
    if ($params) {
      curl_setopt($ch, CURLOPT_URL, $url . '?' . $params);
    } else {
      curl_setopt($ch, CURLOPT_URL, $url);
    }
  }
  $response = curl_exec($ch);
  if ($response === FALSE) {
    //echo "cURL Error: " . curl_error($ch);
    return false;
  }
  $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  $httpInfo = array_merge($httpInfo, curl_getinfo($ch));
  curl_close($ch);
  return $response;
}

利用php语法做一个限流访问(排除指定IP)

javascript+php语法获取ip地址的相关信息

利用php语法实现一个哔哩哔哩热榜api

php删除接口:在指定的数据库数据表中根据ID删除指定的数据

php插入接口:在指定的数据库数据表中插入数据

标签: ip地址 php语法

上面是“如何利用php语法查询ip归属地”的全面内容,想了解更多关于 php入门 内容,请继续关注web建站教程。

当前网址:https://ipkd.cn/webs_2475.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

当前位置: 首页 > php入门
Trae:新一代免费的AI编程工具

呱呱工具箱

一款免费的在线小工具,无需下载,打开即可使用!呱呱工具箱

在线育儿补贴计算器

快来看看你到底可以领到多少补贴!生活小工具
上一篇:
下一篇:
x 打工人ai神器