English 中文(简体)
PHP 电子邮件输出变化 [已关闭]
原标题:PHP email output change [closed]

我在寻找一些脚本帮助, 使变数的电子邮件输出部分隐藏在 @ like I have email 之前 。

[email protected]

我需要在输出中 将“随机”的明星放在那里,比如:

ver***@gmail.com
verys*********************@gmail.com
ve*@gmail.com

但不喜欢:

ver***mail.com
verysecre****ail.com

只是随机使用恒星(或静态),

我试过这样

$output = substr_replace($val,  ******** , 2, 7);

美元 = 美元 电子邮件 ;

最佳回答
$mail = "[email protected]";

$mailparts = explode("@", $mail);

$output = substr($mailparts[0],0,rand(2,5)) . str_repeat("*",rand(1,16));
$output .= "@" . $mailparts[1];
问题回答

怎么样的东西,比如:

$asterisks = "";
for($i = 0; $i < strlen(substr($address, 0, strpos($address, "@"))); $i++)
    $asterisks = $asterisks . "*"; //This loop sets the required number of asterisks
$address = str_replace(substr($address, 0, strpos($address, "@") - 1), $asterisks); 
//everything before the  @  is replaced by an asterisk

使用子字符串的阅读方法比较容易:

$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 长度,以便你能够确定你正在尽可能地隐藏。





相关问题
Angle brackets in php

I want to store angle brackets in a string in PHP because i want to eventually use mail() to send an HTML email out. The following is the code that doesn t seem to work. while(...) { $msg .= "<...

authlogic auto_register feature using my options

I have auto registration working with authlogic using gaizka s version of authlogic_openid which I found on Github since pelle s original addition of the feature seemed to cause issues. http://...

Zend 邮件问题,涉及外国char子+ com子

泽斯德邮局在名称被定为具有外国性质(如“保”)和 com(”)的物品时,就放弃了一种例外(因为邮局(邮局)退回假)。 重新提出以下守则。

How to track an email in Java?

How I can track an email? I m using java on the server side for sending emails. I want to track whether it is delivered , opened, etc... How I can do that ?

Web Link in a mail is not rendering as link in yahoo

string from = "abc@gmail.com"; string to = "xyz@gmail.com,xyz@yahoo.co.in"; string password="abcxyz"; MailMessage mail = new System.Net.Mail.MailMessage(); mail.To.Add(to); mail.From = new ...

SharePoint - Approaching Website Storage Limit Email

How can i go about changing the distribution list as well as the email text for the email that goes out to site collection admin when a site collection approaches it s size limit? Thanks for your ...

How to create an email mailing list

Im creating a coming soon page for a website im developing, and im adding an option for the user to enter their email address so we can email them when the site is up. How do I do this?

CCNet email does not include MSBuild results

We re using CCNet 1.4.4.83 but when an MSBuild task fails, we don t get the MSBuild results (i.e. missing file or whatever reason the compile failed) in the email notification. I do see the build ...

热门标签