您好,登錄后才能下訂單哦!
利用PHP怎么對手機號的運營商進行判斷?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
道理很簡單,知道手機號規則 進行正則判斷就可以
移動: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頁面
<!DOCTYPE html> <html lang="en"> <head> <title>手機號歸屬</title> </head> <body> <input type="text" onblur="mobile_check($(this).val())" > </body> </html> <script type="text/javascript" src="__ROOT__/Public/admin/lib/jquery/1.9.1/jquery.min.js"></script> //修改為自己的路徑 <script> /* 移動: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衛通) */ var phone = ''; function mobile_check(phone){ if(phone.length !== 11){ alert('未檢測到正確的手機號碼'); return false; } $.ajax({ url:"__CONTROLLER__/phone_check", async:false, dataType:'json', type:'post', data:{phone:phone}, success:function(msg){ alert(msg); } }); } </script>
controller控制代碼
/* *@param string $phone 手機號字符串 *@return 0中國移動,1中國聯通 2中國電信 3未知 */ public function phone_check(){ if(IS_POST){ $phone = I('phone'); $isChinaMobile = "/^134[0-8]\d{7}$|^(?:13[5-9]|147|15[0-27-9]|178|18[2-478])\d{8}$/"; //移動方面最新答復 $isChinaUnion = "/^(?:13[0-2]|145|15[56]|176|18[56])\d{8}$/"; //向聯通微博確認并未回復 $isChinaTelcom = "/^(?:133|153|177|173|18[019])\d{8}$/"; //1349號段 電信方面沒給出答復,視作不存在 // $isOtherTelphone = "/^170([059])\\d{7}$/";//其他運營商 if(preg_match($isChinaMobile, $phone)){ $this->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(); }
關于利用PHP怎么對手機號的運營商進行判斷問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。