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 badges6 Answers
Reset to default 6list($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);