最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How can I break an email address into different parts in php? - Stack Overflow

programmeradmin1浏览0评论

Basically what I want to do is display an email using javascript to bring the parts together and form a plete email address that cannot be visible by email harvesters.

I would like to take an email address eg [email protected] and break it to: $variable1 = "info"; $variable2 = "thispany";

All this done in PHP.

Regards, JB

Basically what I want to do is display an email using javascript to bring the parts together and form a plete email address that cannot be visible by email harvesters.

I would like to take an email address eg [email protected] and break it to: $variable1 = "info"; $variable2 = "thispany.";

All this done in PHP.

Regards, JB

Share Improve this question edited May 6, 2010 at 20:35 Brant Messenger 1,45111 silver badges22 bronze badges asked Apr 15, 2010 at 16:40 Jay BeeJay Bee 433 bronze badges
Add a ment  | 

6 Answers 6

Reset to default 6
list($variable1, $variable2) = explode('@','[email protected]');
$parts = explode("@", $email_address);

Assuming that $email_address = '[email protected]' then $parts[0] == 'info' and $parts[1] == 'thispany.'

You can use explode:

$email = '[email protected]';

$arr = explode('@',$email);

$part1 = $arr[0]; // info
$part2 = $arr[1]; // thispany.
$email = "[email protected]";
$parts = explode("@", $email);

Try this one before you roll your own (it does a lot more):

function hide_email($email)

{ $character_set = '+-.0123456789@ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz';

  $key = str_shuffle($character_set); $cipher_text = ''; $id = 'e'.rand(1,999999999);

  for ($i=0;$i<strlen($email);$i+=1) $cipher_text.= $key[strpos($character_set,$email[$i])];

  $script = 'var a="'.$key.'";var b=a.split("").sort().join("");var c="'.$cipher_text.'";var d="";';

  $script.= 'for(var e=0;e<c.length;e++)d+=b.charAt(a.indexOf(c.charAt(e)));';

  $script.= 'document.getElementById("'.$id.'").innerHTML="<a href=\\"mailto:"+d+"\\">"+d+"</a>"';

  $script = "eval(\"".str_replace(array("\\",'"'),array("\\\\",'\"'), $script)."\")"; 

  $script = '<script type="text/javascript">/*<![CDATA[*/'.$script.'/*]]>*/</script>';

  return '<span id="'.$id.'">[javascript protected email address]</span>'.$script;

}

How about a function for parsing strings according to a given format: sscanf. For example:

sscanf('[email protected]', '%[^@]@%s', $variable1, $variable2);
发布评论

评论列表(0)

  1. 暂无评论