有时候我们的项目显示的会员名称,在前台显示的时候,为了保护用户的隐私,会员名不想展示完整,需要一些星号来代替会员关键词,比如日源码,前台显示的时候为日*码,这样的效果既保护了隐私,也很美观。

从网上找了个php函数,既可以截取中文名称,也可以截取英文名称,下面是是代码。

/*
 * 会员名中间显示星号
 */
function cut_str($string, $sublen, $start = 0, $code = 'UTF-8')
{
    if($code == 'UTF-8')
    {
        $pa = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\xbf]|[\xe1-\xef][\x80-\xbf][\x80-\xbf]|\xf0
        [\x90-\xbf][\x80-\xbf][\x80-\xbf]|[\xf1-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]/";
        preg_match_all($pa, $string, $t_string);
        if(count($t_string[0]) - $start > $sublen) return join('', array_slice($t_string[0], $start, $sublen));
        return join('', array_slice($t_string[0], $start, $sublen));
    }
    else
    {
        $start = $start*2;
        $sublen = $sublen*2;
        $strlen = strlen($string);
        $tmpstr = '';
        for($i=0; $i< $strlen; $i++)
        {
            if($i>=$start && $i< ($start+$sublen))
            {
                if(ord(substr($string, $i, 1))>129)
                {
                    $tmpstr.= substr($string, $i, 2);
                }
                else
                {
                    $tmpstr.= substr($string, $i, 1);
                }
            }
            if(ord(substr($string, $i, 1))>129) $i++;
        }
        return $tmpstr;
    }
}

调试方式:

$str = "多码网"; 
echo cut_str($str, 1, 0).'**'.cut_str($str, 1, -1); 
//输出:多*网

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注