PHP 手机号归属地查询接口【阿里云】
2024-09-11
100
1. 手机号归属地查询
前期准备
没有自己的信息库去哪里查询号码信息, 当然是找一个第三方API了
有很多网站提供了在线查询手机号归属地的方式
2. 使用第三方接口查询手机号归属地
PHP 手机号归属地查询接口【阿里云】
购买地址: https://market.aliyun.com/products/57126001/cmapi00035993.html#sku=yuncode2999300001
调用示例
$result = mobilePlace(1503784xxxx);
halt($result);
/**
* 手机号归属地查询
*
* @param $mobile 查询的手机号
* @return array resultCode 0 查询成功 -1 查询失败
*/
function mobilePlace($mobile)
{
if (!preg_match('/^1[34578]{1}\d{9}$/', $mobile, $match)) {
return ['resultCode' => -1, 'resultMsg' => '手机号格式错误'];
}
$api = 'https://mobapi.market.alicloudapi.com/gsd';
$appcode = '85ac5eff462e433ea373b27xxxxx';
$headers = array();
array_push($headers, "Authorization:APPCODE " . $appcode);
$url = $api . "?mobile=" . $mobile;
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'POST');
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_FAILONERROR, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
// curl_setopt($curl, CURLOPT_HEADER, true);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
$result = curl_exec($curl);
return json_decode($result, true);
}
查询成功
province 归属地省份、city 归属地城市、carrier 运营商名称
^ array:6 [▼
"carrier" => "移动"
"province" => "河南"
"city" => "开封"
"mobile" => "1503784xxxx"
"resultCode" => "0"
"resultMsg" => "查询成功!"
]
查询失败
更新于:4个月前^ array:2 [▼
"resultCode" => -1
"resultMsg" => "手机号格式错误"
]
赞一波!
相关文章
- 【说站】php FastCGI模式如何理解
- 【说站】php中的SAPI是什么
- 【说站】php中CGI模式的介绍
- 【说站】php FastCGI模式的优缺点
- 【说站】php有哪些文件包含漏洞
- 【说站】php增量Hash函数的使用
- 【说站】php中如何配置Cookie加密
- 【说站】php命令行中进行断点
- 【说站】php中Swoole的模块介绍
- 【说站】php文件Hash如何使用
- 【说站】php中Suhosin是什么
- 【说站】php Mhash算法的加密
- 【说站】php方法断点如何实现
- 【说站】java如何自定义函数式接口
- 【说站】java泛型接口的使用注意
- 【说站】python API接口如何测试
- 【说站】php中PDO获取关联数组
- 【说站】php PDO的预处理语句有哪些
- 【说站】php PDO运行查询的方法
- 【说站】php中PDO库是什么
文章评论
评论问答