今天终于弄明白了各运营商都分配了哪些号码段

* 中国移动:China Mobile
* 134[0-8],135,136,137,138,139,147,150,151,152,157,158,159,,172,178,182,183.184,187,188,195,197,198
*匹配规则:$cm = "/^1(34[0-8]|(3[5-9]|5[0127-9]|8[23478]|47|7[28]|9[578])\d)\d{7}$/";
 

* 中国联通:China Unicom
* 130,131,132,145,155,156,166,171,175,176,185,186,196
*匹配规则:$cu = "/^1(3[0-2]|5[56]|8[56]|45|66|7[156]|96)\d{8}$/";
 

* 中国电信:China Telecom
* 133,1349,149,153,173,177,180,181,189,190,191,193,199
*匹配规则: $ct = "/^1((33|53|49|73|77|8[019]|9[0139])[0-9]|349)\d{7}$/";
 

* 中国广电: China Broadcast Network
* 192
*匹配规则:$cb = "/^1(92)\d{8}$/";

下面这个函数能自动把文本中电话号码提取出来。代码如下:

 

  1. /** 
  2.  * 在文本中提取出电话号码 
  3.  * @param $content 源文本 
  4.  * @return string 
  5.  */ 
  6. function get_tel($content){ 
  7.     // 检测字符串是否为空 
  8.     $content=trim($content); 
  9.     $numbers = array(); 
  10.     if(emptyempty($content)){ 
  11.         return $numbers
  12.     } 
  13.     $content         = str_replace(' ',' ',ltrim(rtrim(strip_tags($content)))); 
  14.     //删除86-180640741122,0997-8611222之类的号码中间的减号(-) 
  15.     $strArr = explode("-"$content); 
  16.     $newStr = $strArr[0]; 
  17.     for ($i=1; $i < count($strArr); $i++) {  
  18.     if (preg_match("/\d{2}$/"$newStr) && preg_match("/^\d{11}/"$strArr[$i])){ 
  19.       $newStr .= $strArr[$i];  
  20.     } elseif (preg_match("/\d{3,4}$/"$newStr) && preg_match("/^\d{7,8}/"$strArr[$i])) { 
  21.       $newStr .= $strArr[$i];  
  22.     } else { 
  23.       $newStr .= "-".$strArr[$i];  
  24.     }  
  25.     } 
  26.  
  27.     // 手机号的获取 
  28.     $reg='/\D(?:86)?(\d{11})\D/is';//匹配数字的正则表达式 
  29.     preg_match_all($reg,$newStr,$result); 
  30.     $nums = array(); 
  31.     // * 中国移动:China Mobile 
  32.     // * 134[0-8],135,136,137,138,139,147,150,151,152,157,158,159,,172,178,182,183.184,187,188,195,197,198 
  33.     $cm = "/^1(34[0-8]|(3[5-9]|5[0127-9]|8[23478]|47|7[28]|9[578])\d)\d{7}$/"
  34.     // * 中国联通:China Unicom 
  35.     // * 130,131,132,145,155,156,166,171,175,176,185,186,196 
  36.     $cu = "/^1(3[0-2]|5[56]|8[56]|45|66|7[156]|96)\d{8}$/"
  37.     // * 中国电信:China Telecom 
  38.     // * 133,1349,149,153,173,177,180,181,189,190,191,193,199 
  39.     $ct = "/^1((33|53|49|73|77|8[019]|9[0139])[0-9]|349)\d{7}$/"
  40.     // * 中国广电: China Broadcast Network  
  41.     // * 192 
  42.     $cb = "/^1(92)\d{8}$/"
  43.     // 
  44.     foreach ($result[1] as $key => $value) { 
  45.     if(preg_match($cm,$value)){ 
  46.       $nums[] = array("number" => $value"type" => "中国移动"); 
  47.     }elseif(preg_match($cu,$value)){ 
  48.       $nums[] = array("number" => $value"type" => "中国联通"); 
  49.     }elseif(preg_match($ct,$value)){ 
  50.       $nums[] = array("number" => $value"type" => "中国电信"); 
  51.     }elseif (preg_match($cb,$value)) { 
  52.       $nums[] = array("number" => $value"type" => "中国广电"); 
  53.     }else
  54.       // 非法号码 
  55.     } 
  56.     } 
  57.     $numbers["mobile"] = $nums
  58.     
  59.     // 固定电话或小灵通的获取 
  60.     $reg='/\D(0\d{10,12})\D/is';//匹配数字的正则表达式 
  61.     preg_match_all($reg,$newStr,$result); 
  62.     $nums = array(); 
  63.     // * 大陆地区固定电话或小灵通 
  64.     // * 区号:010,020,021,022,023,024,025,027,028,029 
  65.     // * 号码:七位或八位 
  66.     $phs = "/^0(10|2[0-5789]|\d{3})\d{7,8}$/"
  67.     foreach ($result[1] as $key => $value) { 
  68.     if(preg_match($phs$value)){ 
  69.       $nums[] = array("number" => $value"type" => "固定电话或小灵通"); 
  70.     } else { 
  71.       // 非法 
  72.     } 
  73.     } 
  74.     $numbers["landline"] = $nums
  75.      
  76.     // 有可能是没有区号的固定电话的获取 
  77.     $reg='/\D(\d{7,8})\D/is';//匹配数字的正则表达式 
  78.     preg_match_all($reg,$newStr,$result); 
  79.     $nums = array(); 
  80.     foreach ($result[1] as $key => $value) { 
  81.     $nums[] = array("number" => $value"type" => "没有区号的固定电话"); 
  82.     } 
  83.     $numbers["possible"] = $nums
  84.     // 返回最终数组 
  85.     return $numbers

运行结果:

https://zijie.org/files/20200830150701%E7%81%AB%E7%8B%90%E6%88%AA%E5%9B%BE_2020-08-30T07-02-55.612Z.png