道理很简单,知道手机号规则 进行正则判断就可以
移动:134、135、136、137、138、139、150、151、157(TD)、158、159、187、188
联通:130、131、132、152、155、156、185、186
电信:133、153、180、189、(1349卫通)
HTML页面
controller控制代码
ajaxReturn('中国移动'); //0
}else if(preg_match($isChinaUnion,$phone)){
$this->ajaxReturn('中国联通'); //1
}else if(preg_match($isChinaTelcom,$phone)){
$this->ajaxReturn('中国电信'); //2
}else{
$this->ajaxReturn('未知'); //3
}
}
$this->display();
}
以上就是全部的实现代码了,需要的朋友可以参考一下