search
HomeBackend DevelopmentPHP TutorialHow to write regular expression to get mobile phone number in PHP

PHP uses regular expressions to extract the mobile phone number in the string and determine the operator. It is simple, fast and convenient, and can extract multiple mobile phone numbers. The following is a detailed introduction to you through the example code of this article. Friends who need it can refer to it

0. Introduction

PHP extracts through regular expressions The mobile phone number in the string is used to determine the operator. It is simple, fast and convenient, and can extract multiple mobile phone numbers.

1. Code

<?php
header("content-type:text/plain;charset=utf-8");
function findThePhoneNumbers($oldStr = ""){
  // 检测字符串是否为空
  $oldStr=trim($oldStr);
  $numbers = array();
  if(empty($oldStr)){
    return $numbers;
  }
  // 删除86-180640741122,0997-8611222之类的号码中间的减号(-)
  $strArr = explode("-", $oldStr);
  $newStr = $strArr[0];
  for ($i=1; $i < count($strArr); $i++) { 
    if (preg_match("/\d{2}$/", $newStr) && preg_match("/^\d{11}/", $strArr[$i])){
      $newStr .= $strArr[$i]; 
    } elseif (preg_match("/\d{3,4}$/", $newStr) && preg_match("/^\d{7,8}/", $strArr[$i])) {
      $newStr .= $strArr[$i]; 
    } else {
      $newStr .= "-".$strArr[$i]; 
    } 
  }
  // 手机号的获取
  $reg=&#39;/\D(?:86)?(\d{11})\D/is&#39;;//匹配数字的正则表达式
  preg_match_all($reg,$newStr,$result);
  $nums = array();
  // * 中国移动:China Mobile
  // * 134[0-8],135,136,137,138,139,150,151,157,158,159,182,187,188
  $cm = "/^1(34[0-8]|(3[5-9]|5[017-9]|8[278])\d)\d{7}$/";
  // * 中国联通:China Unicom
  // * 130,131,132,152,155,156,185,186
  $cu = "/^1(3[0-2]|5[256]|8[56])\d{8}$/";
  // * 中国电信:China Telecom
  // * 133,1349,153,180,189
  $ct = "/^1((33|53|8[09])[0-9]|349)\d{7}$/";
  //
  foreach ($result[1] as $key => $value) {
    if(preg_match($cm,$value)){
      $nums[] = array("number" => $value, "type" => "中国移动");
    }elseif(preg_match($cu,$value)){
      $nums[] = array("number" => $value, "type" => "中国联通");
    }elseif(preg_match($ct,$value)){
      $nums[] = array("number" => $value, "type" => "中国电信");
    }else{
      // 非法号码
    }
  }
  $numbers["mobile"] = $nums;
  // 固定电话或小灵通的获取
  $reg=&#39;/\D(0\d{10,12})\D/is&#39;;//匹配数字的正则表达式
  preg_match_all($reg,$newStr,$result);
  $nums = array();
  // * 大陆地区固定电话或小灵通
  // * 区号:010,020,021,022,023,024,025,027,028,029
  // * 号码:七位或八位
  $phs = "/^0(10|2[0-5789]|\d{3})\d{7,8}$/";
  foreach ($result[1] as $key => $value) {
    if(preg_match($phs, $value)){
      $nums[] = array("number" => $value, "type" => "固定电话或小灵通");
    } else {
      // 非法
    }
  }
  $numbers["landline"] = $nums;
  // 有可能是没有区号的固定电话的获取
  $reg=&#39;/\D(\d{7,8})\D/is&#39;;//匹配数字的正则表达式
  preg_match_all($reg,$newStr,$result);
  $nums = array();
  foreach ($result[1] as $key => $value) {
    $nums[] = array("number" => $value, "type" => "没有区号的固定电话");
  }
  $numbers["possible"] = $nums;
  // 返回最终数组
  return $numbers;
}
// 测试数据
$str = "this(8625010) is a number, and the another is here(09978625000) ,the phone number is 18064074452 and 13899555555。这是中文,这里有个13239323232的手机号,还有一个188779988441这是12位8613322114455的。这里又是一个手机号86-18064074455。还有一个区号分开写的0997-8625001hahaha";
$nums = findThePhoneNumbers($str);
print_r($nums);

2. Test result

Array
(  [mobile] => Array
    (
      [0] => Array
        (
          [number] => 18064074452
          [type] => 中国电信
        )
      [1] => Array
        (
          [number] => 13899555555
          [type] => 中国移动
        )
      [2] => Array
        (
          [number] => 13239323232
          [type] => 中国联通
        )
      [3] => Array
        (
          [number] => 13322114455
          [type] => 中国电信
        )
      [4] => Array
        (
          [number] => 18064074455
          [type] => 中国电信
        )
    )
  [landline] => Array
    (
      [0] => Array
        (
          [number] => 09978625000
          [type] => 固定电话或小灵通
        )
      [1] => Array
        (
          [number] => 09978625001
          [type] => 固定电话或小灵通
        )
    )
  [possible] => Array
    (
      [0] => Array
        (
          [number] => 8625010
          [type] => 没有区号的固定电话
        )
    )
)

3. Result analysis

mobile 移动电话号码
landline 固定电话或者小灵通
possible 可能是没有区号的固定电话

The above is the detailed content of How to write regular expression to get mobile phone number in PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
手机是空号的几种原因是什么手机是空号的几种原因是什么Feb 21, 2023 pm 02:26 PM

手机是空号的原因:1、手机号码被对方拉入黑名单;2、对方设置了呼叫转移功能,且转移的号码为非常规手机号段,例如随意按的11位数字;3、号码错误;4、虚拟号码;5、号码被注销,正处于回收冻结期;6、运营商系统故障,会区域性的、范围性的导致用户手机出现空号状态;7、信号不好;8、号码格式不对;9、手机卡故障;10、特殊彩铃。

怎么查手机号码注册了哪些东西「详细讲解:手机号注册的APP查询方法」怎么查手机号码注册了哪些东西「详细讲解:手机号注册的APP查询方法」Feb 07, 2024 am 08:24 AM

不知道大家有没有这样一种经历,手机经常会收到莫名其妙的一些短信,或者是一些网站的注册信息或者其他的一些验证信息,实际可能我们的手机号绑定了很多陌生的网站,我们自己都不知情,那么今天给大家分享的是教你如何一键解除所有陌生的网站绑定。步骤一、打开码号服务平台这个技巧非常实用。操作步骤如下:打开微信,点击搜索框的加号图标,选择添加朋友,然后输入码号服务平台进行搜索。我们可以看到有一个码号服务平台,当然它是属于事业单位,是国家信通院推出的,可以帮助大家一键解除手机号绑定信息。步骤二、查询手机是否被标记我

高德地图手机号码怎么换绑_高德地图手机号码更换方法详细介绍高德地图手机号码怎么换绑_高德地图手机号码更换方法详细介绍Mar 20, 2024 pm 08:41 PM

高德地图以其精准的定位和丰富的功能受到了广大用户的喜爱。然而,在使用过程中,有时我们可能需要更换绑定的手机号码,以确保个人信息和服务的准确性。那么,高德地图手机号码如何换绑呢?小编整理了一些相关资料,快来和我一起看看吧!高德地图手机号码如何换绑?答案:【高德地图】-【我的】-【设置图标】-【账号与安全】-【手机号】-【更换】-【下一步】。具体步骤:1、首先打开高德地图软件,进入到首页中我们需要点击右下角的【我的】;2、然后在我的一秒钟红可以看到一些相关的功能,在这里我们点击右上角的【设置图标】;

php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

如何查询手机号码的使用状态?手机号使用时间怎么查?如何查询手机号码的使用状态?手机号使用时间怎么查?Mar 07, 2024 pm 04:30 PM

随着移动通信技术的不断进步,手机号码已经成为我们日常生活中必不可缺的通信工具。有时候,我们会需要查询某个手机号码的使用状态,比如验证该号码是否已停机或欠费。一、如何查询手机号码的使用状态?与运营商客服取得联系是查询手机号码使用状态最直接的方式。不同的运营商可能会有不同的查询方式,但通常可以通过拨打运营商的客服热线来实现。在与客服人员通话时,您只需提供需要查询的手机号码,客服人员会为您提供详细的使用状态信息。因此,如果您想了解某个手机号码的具体情况,可以通过拨打运营商客服热线来获取相关信息。现在有

QQ邮箱如何更改手机号码绑定-QQ邮箱更改手机号码绑定的方法QQ邮箱如何更改手机号码绑定-QQ邮箱更改手机号码绑定的方法Mar 04, 2024 pm 03:46 PM

很多小伙伴不知道QQ邮箱如何更改手机号码绑定,所以下面小编就分享了QQ邮箱更改手机号码绑定的方法,一起跟着小编来看看吧,相信对大家会有帮助。第一步:首先打开qq邮箱,选择上方的设置,如下图。第二步:在设置中选择账户选项,如下图。第三步:选择立即注销,如下图。第四步:注销后,选择注册手机号邮箱帐号。第五步:在出现的界面中选择注册其他账号,如下图。第六步:根据提示使用新的手机号码,发送短信,如下图。第七步:发送完成后,就更改成功了。上面就是小编为大家带来的QQ邮箱如何更改手机号码绑定的全部内容,希望

PHP怎么查询手机号码归属地PHP怎么查询手机号码归属地Oct 20, 2022 pm 03:00 PM

PHP查询手机号码归属地的方法:1、请求手机号码归属查询API;2、根据手机号码或手机号码的前7位,查询手机号码归属地信息;3、通过“function juheHttpRequest($url, $params = false, $ispost = 0){...}”方法请求接口返回内容即可。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment