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

php手机号码中间四位隐藏的方法:
使用substr_replace代替方法:
$num = "12345678910" $str = substr_replace($num,'****',3,4);

三种实现方式
立即学习“PHP免费学习笔记(深入)”;
<?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手机号码中间四位如何隐藏?的详细内容,更多请关注php中文网其它相关文章!
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号