Home > php教程 > php手册 > body text

屏蔽Email地址的smarty插件

WBOY
Release: 2016-06-21 08:57:17
Original
1630 people have browsed it

作中用到的,觉得这样的显示工作,还是交给模板类比较合适。

工作中用到的,觉得这样的显示工作,还是交给模板类比较合适。所以写了这样的一个插件。

 

/**
 * Smarty plugin
 * @package Smarty
 * @subpackage plugins
 */

/**
 * Smarty email_mask modifier plugin
 *
 * Type:     modifier

 * Name:     email_mask

 * Purpose:  mask part of email

 * Input:

 *         - string: input email
 *         - part: mask part [default '60'] unit: percent
 *         - position: mask position [default 'center'] (left, center, right)
 *         - maskString: mask string [default '*']
 *
 * @author  wendaming
 * @param string
 * @param integer
 * @param string
 * @param string
 * @return stringvoid
 */

function smarty_modifier_email_mask($string, $maskPart = 60, $position = 'center', $maskString = '*') {
    $emailName = substr($string, 0, strpos($string, '@'));
    $emailLen = strlen($emailName);
    $maskNum = floor($emailLen * $maskPart / 100);
    $maskName = '';

    if ($position == 'center') {
        $beginMask = floor(($emailLen - $maskNum) / 2);
    } elseif ($position == 'left') {
        $beginMask = 0;
    } else {
        $beginMask = $emailLen - $maskNum;
    }

    $count = 0;
    for ($i = 0; $i         if ($i >= $beginMask && $count             $maskName .= $maskString;
            ++ $count;
        } else {
            $maskName .= $emailName{$i};
        }
    }

    return str_replace($emailName . '@', $maskName . '@', $string);
}



Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template