首頁  >  文章  >  後端開發  >  php手機號碼中間四位如何隱藏?

php手機號碼中間四位如何隱藏?

coldplay.xixi
coldplay.xixi原創
2020-07-27 09:45:574569瀏覽

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

php手機號碼中間四位如何隱藏?

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

使用substr_replace代替方法:

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

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"

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

以上是php手機號碼中間四位如何隱藏?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn