PHP调用高德IP定位API进行IP定位

4 篇文章 0 订阅

首先要注册账号,获取APIKEY,帮助见
https://lbs.amap.com/api/webservice/guide/create-project/get-key

在服务器根目录下创建一个PHP文件,写入以下代码

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>IP定位</title>
</head>

<body>
<form method="get" >
<div align="center">
<table width="200" border="1">
<tr>
<td colspan="2"><div align="center">IP定位</div></td>
</tr>
<tr>
<td width="136">
<input type="text" name="ip" />
</td>
<td width="48"><input type="submit"name="submit" value="查询" /></td>
</tr>
</table>
</div>
</form>
<?php
if($_GET['submit']&&$_GET['submit']='查询'){
$IP=$_GET['ip'];
//$key="自己的apikey"
$key="";
$testurl = "https://restapi.amap.com/v3/ip?key=fdb597223d0c9319d6ceb78c0b0657eb&ip=$IP&output=json";
 $ch = curl_init();
 curl_setopt($ch, CURLOPT_URL, $testurl);
 //参数为1表示传输数据,为0表示直接输出显示。
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//参数为0表示不带头文件,为1表示带头文件
curl_setopt($ch, CURLOPT_HEADER,0);
$output = curl_exec($ch);
curl_close($ch);
echo $output;
return $output;
}
    ?>
</body>
</html>

就可以进行IP查询了
更加多和详细的文章见http://ckpan.oicp.io:82
点击查看示例

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值