使用子字符串的阅读方法比较容易:
$emails = array(
[email protected] ,
[email protected] ,
[email protected] ,
);
function obfuscate_email($email) {
$at_position = strpos($email, @ );
$chop = rand(1, $at_position - 1);
$mask = str_repeat( * , rand(4, 8));
$partial_address = substr($email, 0, $chop);
$domain = substr($email, $at_position);
return $partial_address . $mask . $domain;
}
foreach($emails as $email) {
var_dump(obfuscate_email($email));
}
// Output:
// string(18) "ver*****@gmail.com"
// string(24) "exam********@example.org"
// string(17) "s****@example.com"
可在上找到一个运行中的示例。
正如你所看到的,我已将代码纳入一个功能,以便更容易使用。该功能将为您提供一个模糊的电子邮件地址,地址如下:
- A random chop of the original address (taking into account its length)
- A random mask of asterisks
如果是我本人实际执行此函数的话,我会确保我试图混淆的电子邮件地址长度超过3个字符,并适当调整 $chop
长度,以便你能够确定你正在尽可能地隐藏。