php 验证手机号码 判断手机号码归属地方
?php// 手机号验证function checkMobileValidity($mobilephone){$exp = /^13[0-9]{1}[0-9]{8}$|15[012356789]{1}[0-9]{8}$|18[012356789]{1}[0-9]{8}$|14[57]{1}[0-9]$/;if(preg_match($exp,$mobilephone)){return true;}else{return false;}}// 手机号码归
<?php // 手机号验证 function checkMobileValidity($mobilephone){ $exp = "/^13[0-9]{1}[0-9]{8}$|15[012356789]{1}[0-9]{8}$|18[012356789]{1}[0-9]{8}$|14[57]{1}[0-9]$/"; if(preg_match($exp,$mobilephone)){ return true; }else{ return false; } } // 手机号码归属地(返回: 如 广东移动) function checkMobilePlace($mobilephone){ $url = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=".$mobilephone."&t=".time(); $content = file_get_contents($url); $p = substr($content, 56, 4); $mo = substr($content, 81, 4); return $str = conv2utf8($p).conv2utf8($mo); } // 转换字符串编码为 UTF8 function conv2utf8($text){ return mb_convert_encoding($text,'gbk','ASCII,GB2312,GB18030,GBK,UTF-8'); } ?>
淘宝网
API地址:http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=15850781443
参数:
-
tel:手机号码
-
返回:JSON
API地址:http://virtual.paipai.com/extinfo/GetMobileProductInfo?mobile=15850781443&amount=10000&callname=getPhoneNumInfoExtCallback
参数:
-
mobile:手机号码
-
callname:回调函数
-
amount:未知(必须)
-
返回:JSON
API地址:http://life.tenpay.com/cgi-bin/mobile/MobileQueryAttribution.cgi?chgmobile=15850781443
参数:
-
chgmobile:手机号码
-
返回:xml
API地址:https://www.baifubao.com/callback?cmd=1059&callback=phone&phone=15850781443
参数:
-
phone:手机号码
-
callback:回调函数
-
cmd:未知(必须)
-
返回:JSON
API地址:http://cz.115.com/?ct=index&ac=get_mobile_local&callback=jsonp1333962541001&mobile=15850781443
参数:
-
mobile:手机号码
-
callback:回调函数
-
返回:JSON
有道api接口
接口地址:http://www.youdao.com/smartresult-xml/search.s?type=mobile&q=13892101112
参数说明:
-
type : 参数手机归属地固定为mobile
-
q : 手机号码
返回XML格式:
或者
http://www.youdao.com/smartresult-xml/search.s?jsFlag=true&type=mobile&q=手机号码
返回JSON格式:
fYodaoCallBack(1,{‘product’:'mobile’,'phonenum’:’13892101112′,’location’:'陕西 延安’} ,”);
举例:
$content = get_mobile_area($mobile);
print_r($content);
function get_mobile_area($mobile){
$sms = array('province'=>'', 'supplier'=>''); //初始化变量
//根据淘宝的数据库调用返回值
$url = "http://tcc.taobao.com/cc/json/mobile_tel_segment.htm?tel=".$mobile."&t=".time();
$content = file_get_contents($url);
$sms['province'] = substr($content, "56", "4"); //截取字符串
$sms['supplier'] = substr($content, "81", "4");
return $sms;
}

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
