正则表达式方法
1、字符串中包含多个手机号码,代码如下:
- <?php
- $s='王经理:13999312365 李经理:13588958741';
- $s=preg_replace('#(d{3})d{5}(d{3})#', '${1}*****${2}', $s);
- echo $s;
-
- ?>
2、字符串中只有一个手机号码,代码如下:
- <?php
- $haoma="15012345678";
- echo preg_replace("/(d{3})d{5}/","$1*****",$haoma);
-
- ?>
不用正则表达式实现
1、使用substr_replace字符串部分替换函数,代码如下:
- <?php
- $string1="13264309555";
- echo substr_replace($string1,'*****',3,5);
-
- ?>
2、使用字符串截取函数substr,代码如下:
- <?php
- echo substr($string1,0,3)."*****".substr($string1,8,3);
-
- ?>
|