本教程操作环境:windows7系统、PHP8.1版、Dell G3电脑。PHP怎么查询手机号码归属地?基于php的手机号码归属地查询手机号码(段)归属地查询接口请求Key,可以通过https://www.juhe.cn/docs/api/
本教程操作环境:windows7系统、PHP8.1版、Dell G3电脑。
PHP怎么查询手机号码归属地?
基于php的手机号码归属地查询
手机号码(段)归属地查询
接口请求Key,可以通过https://www.juhe.cn/docs/api/id/11?s=cpphpcn
免费申请开通
$appkey = "*********************";
//根据手机号码或手机号码的前7位,查询手机号码归属地信息,如省份 、城市、运营商等。
$url = "Http://apis.juhe.cn/mobile/get";
$params = [
"phone" => "1891234",//手机号码或手机号码的前7位
"key" => $appkey,//应用APPKEY(应用详细页查询)
];
$paramstring = http_build_query($params);
$content = juheHttpRequest($url, $paramstring, 1);
$result = JSON_decode($content, true);
if ($result) {
if ($result['error_code'] == 0) {
echo "省份:{$result['result']['province']}" . PHP_EOL;
echo "城市:{$result['result']['city']}" . PHP_EOL;
echo "区号:{$result['result']['areacode']}" . PHP_EOL;
echo "运营商:{$result['result']['company']}" . PHP_EOL;
} else {
echo "{$result['error_code']}:{$result['reason']}" . PHP_EOL;
}
} else {
echo "请求失败";
}
function juheHttpRequest($url, $params = false, $ispost = 0)
{
$httpInfo = array();
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
curl_setopt($ch, CURLOPT_USERAGENT, 'JuheData');
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 3);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
if ($ispost) {
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
curl_setopt($ch, CURLOPT_URL, $url);
} else {
if ($params) {
curl_setopt($ch, CURLOPT_URL, $url . '?' . $params);
} else {
curl_setopt($ch, CURLOPT_URL, $url);
}
}
$response = curl_exec($ch);
if ($response === FALSE) {
//echo "cURL Error: " . curl_error($ch);
return false;
}
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
$httpInfo = array_merge($httpInfo, curl_getinfo($ch));
curl_close($ch);
return $response;
}
以上就是PHP怎么查询手机号码归属地的详细内容,更多请关注编程网其它相关文章!
--结束END--
本文标题: PHP怎么查询手机号码归属地
本文链接: https://lsjlt.com/news/99158.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0