Home > Backend Development > PHP Problem > How to hide the middle four digits of mobile phone number in php?

How to hide the middle four digits of mobile phone number in php?

coldplay.xixi
Release: 2023-03-03 10:58:02
Original
4613 people have browsed it

php手机号码中间四位隐藏的方法:使用【substr_replace】代替方法,替换字符串的子串,代码为【$num = "12345678910" $str = substr_replace($num,'****',3,4)】。

How to hide the middle four digits of mobile phone number in php?

php手机号码中间四位隐藏的方法:

使用substr_replace代替方法:

$num = "12345678910"
$str = substr_replace($num,'****',3,4);
Copy after login

How to hide the middle four digits of mobile phone number in php?

三种实现方式

<?php
$tel = &#39;12345678910&#39;;
//1.字符串截取法
$new_tel1 = substr($tel, 0, 3).&#39;****&#39;.substr($tel, 7);
var_dump($new_tel1);
//2.替换字符串的子串
$new_tel2 = substr_replace($tel, &#39;****&#39;, 3, 4);
var_dump($new_tel2);
//3.用正则
$new_tel3 = preg_replace(&#39;/(\d{3})\d{4}(\d{4})/&#39;, &#39;$1****$2&#39;, $tel);
var_dump($new_tel3);
?>
结果:
> string(11) "123****8910"
> string(11) "123****8910"
> string(11) "123****8910"
Copy after login

相关学习推荐:PHP编程从入门到精通

The above is the detailed content of How to hide the middle four digits of mobile phone number in php?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template