一款简单实用的php以星号隐藏用户名手机号码和邮箱实例,将用户的一些文字信息隐藏一部分用星号代替,以便于保护用户隐私。
七夕节手抄报隐藏函数:
1 function hidestar($str) { //用户名、邮箱、手机账号中间字符串以*隐藏 2 if (strpos($str, '@')) { 3 $email_array = explode("@", $str); 4 $prevfix = (strlen($email_array[0]) < 4) ? "" : substr($str, 0, 3); //邮箱前缀 5 $count = 0; 6 $str = preg_replace('/([\d\w+_-]{0,100})@/', '***@', $str, -1, $count); 7 $rs = $prevfix . $str;预防溺水作文 8 } el { 9 $pattern = '/(1[3458]{1}[0-9])[0-9]{4}([0-9]{4})/i'; 10 if (preg_match($pattern, $str)) { 11 $rs = preg_replace($pattern, '$1****$2', $str); // substr_replace($name,'****',3,4); 12 } el { 13 $rs = substr($str, 0, 3) . "***" . substr($str, -1); 14 } 15 } 16 return $rs; 17 }
测试数据:
1 <?php 2 $account = "sucaihuo.c学科门类om"; 3 $email = "123456789@qq.com"; 4 $phone = "13800000000"; 5 ?>
以星号*显示实例:
1 <table width="100%"> 2 <tr> 3 <td>账号</td> 4 <td>邮箱</td> 5 <td>手机</td> 6 </tr> 7 <tr> 其实我很好8 未来日记27 <td><?php echo $account;?></td> 9 <td><?php echo $email;?></td> 10 <td><?php echo $phone;?></td> 11 </tr> 12 <tr> 13 <td><?php echo hidestar($account);?></td> 14 <td><?php echo hidestar($email);?></td> 15 <td><?php echo hidestar($phone);?></td> 16 </tr> 17 </table>
本文转自: 转载请注明出处!
本文发布于:2023-04-07 06:30:08,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/fbdeadcf3c137ca92c1a2826dfb532f6.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP以星号隐藏用户名手机号码和邮箱实例.doc
本文 PDF 下载地址:PHP以星号隐藏用户名手机号码和邮箱实例.pdf
留言与评论(共有 0 条评论) |