• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    PHP使用星号替代用户名手机和邮箱的实现代码

    PHP使用星号替代用户名手机和邮箱这个在许多的活动界面会看到如淘宝的购物界面中的一些客户的支付宝号都是隐藏掉的哦,下面我们来看一下它的使用方法吧.

    ?php 
    function hideStar($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 = "phpfensi.com"; 
    $email = "416148489@qq.com"; 
    $phone = "18005152525"; 
    ?> 
    !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    html xmlns="http://www.w3.org/1999/xhtml"> 
      head> 
        meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
        title>演示:PHP以星号隐藏用户名手机和邮箱/title> 
        meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/> 
        link rel="stylesheet" type="text/css" href="http://www.phpfensi.com /jquery/css/common.css" rel="external nofollow" /> 
        style type="text/css"> 
        /style> 
      /head> 
      body> 
        div class="head"> 
          div class="head_inner clearfix"> 
            ul id="nav"> 
              li>a href="http://www.phpfensi.com " rel="external nofollow" rel="external nofollow" >首 页/a>/li> 
              li>a href="http://www.phpfensi.com /templates" rel="external nofollow" >网站模板/a>/li> 
              li>a href="http://www.phpfensi.com /js" rel="external nofollow" >网页特效/a>/li> 
              li>a href="http://www.phpfensi.com /php" rel="external nofollow" >PHP/a>/li> 
              li>a href="http://www.phpfensi.com /site" rel="external nofollow" >精选网址/a>/li> 
            /ul> 
            a class="logo" href="http://www.phpfensi.com " rel="external nofollow" rel="external nofollow" >img src="http://www.phpfensi.com /Public/images/logo.jpg" alt="素材火logo" />/a> 
          /div> 
        /div> 
        div class="container"> 
          div class="demo"> 
            h2 class="title">a href="http://www.phpfensi.com /js/548.html" rel="external nofollow" >教程:PHP以星号隐藏用户名手机和邮箱/a>/h2> 
            table width="100%" class="table_parameters"> 
              tr class="tr_head"> 
                td>账号/td> 
                td>邮箱/td> 
                td>手机/td> 
              /tr> 
              tr> 
                td>?php echo $account; ?>/td> 
                td>?php echo $email; ?>/td> 
                td>?php echo $phone; ?>/td> 
              /tr> 
              tr class="red"> 
                td>?php echo hideStar($account); ?>/td> 
                td>?php echo hideStar($email); ?>/td> 
                td>?php echo hideStar($phone); ?>/td> 
              /tr> 
            /table> 
          /div> 
        /div> 
      /body> 
    /html> 

    总结

    以上所述是小编给大家介绍的PHP使用星号替代用户名手机和邮箱的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

    您可能感兴趣的文章:
    • PHP使用星号隐藏用户名,手机和邮箱的实现方法
    • PHP用星号隐藏部份用户名、身份证、IP、手机号等实例
    上一篇:PHP unlink与rmdir删除目录及目录下所有文件实例代码
    下一篇:PHP设计模式之装饰器模式实例详解
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    PHP使用星号替代用户名手机和邮箱的实现代码 PHP,使用,星号,替,代用,户名,