正常三网号段,其他的 不统计 14号段以前为上网卡专属号段,如中国联通的是145,中国移动的是147等等。 虚拟运营商 电信:1700、1701、1702 移动:1703、1705、1706 联通:1704、1707、1708、1709、171 卫星通信:1349
/* 中国电信号段 133、来149、153、173、177、180、181、189、199 中国联通号段 130、131、132、145、155、156、166、171、175、176、185、186、166 中国移动源号段 134(0-8)、135、136、137、138、139、147、150、151、152、157、158、159、172、178、182、183、184、187、188、198 */ $isChinaMobile = "/^134[0-8]\d{7}$|^(?:13[5-9]|147|15[0-27-9]|17[28]|18[2-478]|198)\d{8}$/"; //移动方面最新答复 $isChinaUnion = "/^(?:13[0-2]|145|15[56]|166|17[156]|18[56])\d{8}$/"; //向联通微博确认并未回复 $isChinaTelcom = "/^(?:133|149|153|177|173|18[019]|199)\d{8}$/"; //1349号段 电信方面没给出答复,视作不存在 // $isOtherTelphone = "/^170([059])\\d{7}$/";//其他运营商 if(preg_match($isChinaMobile, $phone)){ return '中国移动'; }else if(preg_match($isChinaUnion, $phone)){ return '中国联通'; }else if(preg_match($isChinaTelcom, $phone)){ return '中国电信'; }else{ return '未知'; }