PHP使用星号隐藏用户名,手机和邮箱的实现方法
本文实例讲述了PHP使用星号隐藏用户名,手机和邮箱的实现方法。分享给大家供大家参考,具体如下:
PHP使用星号替代用户名手机和邮箱这个在许多的活动界面会看到如淘宝的购物界面中的一些客户的支付宝号都是隐藏掉的哦,下面我们来看一下它的使用方法吧.
<?php functionhideStar($str){//用户名、邮箱、手机账号中间字符串以*隐藏 if(strpos($str,'@')){ $email_array=explode("@",$str); $prevfix=(strlen($email_array[0])<4)?"":substr($str,0,3);//邮箱前缀 $count=0; $str=preg_replace('/([\d\w+_-]{0,100})@/','***@',$str,-1,$count); $rs=$prevfix.$str; }else{ $pattern='/(1[3458]{1}[0-9])[0-9]{4}([0-9]{4})/i'; if(preg_match($pattern,$str)){ $rs=preg_replace($pattern,'$1****$2',$str);//substr_replace($name,'****',3,4); }else{ $rs=substr($str,0,3)."***".substr($str,-1); } } return$rs; } ?> <?php $account="jb51.net"; $email="123456789@qq.com"; $phone="13888888888"; ?> <!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <htmlxmlns="http://www.w3.org/1999/xhtml"> <head> <metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/> <title>演示:PHP以星号隐藏用户名手机和邮箱</title> <metaname="viewport"content="width=device-width,initial-scale=1,maximum-scale=1"/> <linkrel="stylesheet"type="text/css"href="css/common.css"/> <styletype="text/css"> </style> </head> <body> <divclass="head"> <divclass="head_innerclearfix"> <ulid="nav"> <li><ahref="/">首页</a></li> <li><ahref="/templates">网站模板</a></li> <li><ahref="/js">网页特效</a></li> <li><ahref="/php">PHP</a></li> <li><ahref="/site">精选网址</a></li> </ul> <aclass="logo"href=""><imgsrc="images/logo.jpg"alt="素材火logo"/></a> </div> </div> <divclass="container"> <divclass="demo"> <h2class="title"><ahref="#">教程:PHP以星号隐藏用户名手机和邮箱</a></h2> <tablewidth="100%"class="table_parameters"> <trclass="tr_head"> <td>账号</td> <td>邮箱</td> <td>手机</td> </tr> <tr> <td><?phpecho$account;?></td> <td><?phpecho$email;?></td> <td><?phpecho$phone;?></td> </tr> <trclass="red"> <td><?phpechohideStar($account);?></td> <td><?phpechohideStar($email);?></td> <td><?phpechohideStar($phone);?></td> </tr> </table> </div> </div> </body> </html>
更多关于PHP相关内容感兴趣的读者可查看本站专题:《php字符串(string)用法总结》、《PHP数组(Array)操作技巧大全》、《PHP基本语法入门教程》、《PHP运算与运算符用法总结》、《php面向对象程序设计入门教程》、《PHP网络编程技巧总结》、《php+mysql数据库操作入门教程》及《php常见数据库操作技巧汇总》
希望本文所述对大家PHP程序设计有所帮助。