参数名称 | 参数类型 | 必填 | 默认值 | 示例值 | 备注 |
---|---|---|---|---|---|
province | String | 否 | 省名 | ||
city | String | 否 | 城市名字 | ||
area | String | 否 | 区域名字 | ||
name | String | 否 | 网点名字 | ||
address | String | 否 | 详细地址 | ||
expType | String | 否 | shunfeng | 快递公司编码,具体参考快递接口 |
<?php header('content-type:text/html;charset=utf-8'); $ch = curl_init(); $url = 'https://api.liangmlk.cn?ak=xxxx&appid=2292'; curl_setopt($ch,CURLOPT_URL,$url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); $res = curl_exec($ch); curl_close($ch); return json_decode($res,true);