PHP 手机号归属地查询接口【阿里云】
2024-09-11
34
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" => "查询成功!"
]
查询失败
更新于:1个月前^ array:2 [▼
"resultCode" => -1
"resultMsg" => "手机号格式错误"
]
赞一波!
相关文章
- 【说站】php解析json数据
- 【说站】php返回json数据
- 【说站】php数组赋值方式
- 【说站】php包含字符
- 【说站】php数组交集函数
- 【说站】php文件怎么在浏览器运行
- 【说站】php文件用什么软件打开
- 【说站】php文件怎么运行
- 【说站】java泛型接口怎么用
- 【说站】python vim模块的函数接口
- docker 怎么部署 php 应用
- php语法技巧代码实例
- PHP学习的技巧和学习的要素总结
- PHP平滑关闭/重启的实现代码
- PHP CURLFile函数模拟实现文件上传展示
- PHP导出数据超时的优化建议解读
- PHP实现生成二维码代码展示
- 10个技巧优化PHP程序Laravel 5框架
- 全栈工程师看过来!PHP Javascript语法对照、速查
- PHP程序员经常碰到的11个MySQL错误
文章评论
评论问答