-
基站查询
[PHP]- https://www.6api.net/api/cell/
- 阅读数:11149 上传时间:2020-11-21
- 示例代码
本代码示例是基于PHP的六派数据接口进行数据请求 API服务请求的代码示例,使用前你需要:
①:通过https://www.6api.net/api/cell/ 申请API服务
以下是完整代码示例:
require_once("curl.func.php"); $method = "POST"; $url = "http://open.liupai.net/cell/query"; $headers = NULL; $params = array( "appkey" => "yourappsecret", "mnc" => "0", "lac" => "4301", "ci" => "20986", "coord" => "wgs84" ); $result = api_curl($method, $url, $headers, $params); if ($result) { $body = json_decode($result["body"], TRUE); $status_code = $body["status"]; if ($status_code == "200") { var_dump($body["result"]); }else var_dump($body); }else echo "发送请求失败";