PHP根據手機號判斷電訊廠商

來源:互聯網
上載者:User
這篇文章主要介紹了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();  }


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.