码迷,mamicode.com
首页 > 移动开发 > 详细

php进行过滤用户名、邮箱、手机账号中间字符串以*隐藏

时间:2020-02-03 17:29:12      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:member   pat   文件中   match   return   自定义函数   字符   函数   api   

  php进行过滤用户名、邮箱、手机账号中间字符串以*隐藏

 

 在自定义函数文件中加入(网站根目录api/extend.func.php)

//用户名、邮箱、手机账号中间字符串以*隐藏 
function xhdestar($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; 
}

  实例用法:chip/contact.htm中调用

{xhdestar($member[mobile])}

  

php进行过滤用户名、邮箱、手机账号中间字符串以*隐藏

标签:member   pat   文件中   match   return   自定义函数   字符   函数   api   

原文地址:https://www.cnblogs.com/68xi/p/12256403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!