编程技术

php隐藏手机号的方法:1、字符串截取法,代码为【$new_1=substr($tel, 0, 3).’****’.substr($tel, 7)】;2、替换字符串的子串,代码为【$new=substr_replace($tel,)】。

php如何隐藏手机号_编程技术_亿码酷站插图

php隐藏手机号的方法:

$num = “12345678910”

$str = substr_replace($num,’****’,3,4);

a1364a22330b359b48b6570ae33ff76.png

三种实现方式

<?php
$tel = '12345678910';
//1.字符串截取法
$new_tel1 = substr($tel, 0, 3).'****'.substr($tel, 7);
var_dump($new_tel1);
//2.替换字符串的子串
$new_tel2 = substr_replace($tel, '****', 3, 4);
var_dump($new_tel2);
//3.用正则
$new_tel3 = preg_replace('/(\d{3})\d{4}(\d{4})/', '$1****$2', $tel);
var_dump($new_tel3);
?>

结果:

> string(11) "123****8910"
> string(11) "123****8910"
> string(11) "123****8910"

php如何隐藏手机号
—–文章转载自PHP中文网如有侵权请联系admin#tyuanma.cn删除

wamp中如何打开mysql

云服务器推荐