Wie viel Sinn macht es , die eMail in ASCII Zeichen im Code zu hinterlegen?
Ich habe gelesen, dass man einige Bots damit austricksen kann:
Meine Funktion dazu sieht so aus: (Bitte steiningt mich nicht, die ist mit Sicherheit total hässlich und unprofessionel aber sie funktioniert)
function email_to_ascii($email) {
$upper_letter = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z';
$upper_letter_ansi = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'I', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z';
$lower_letter = array('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z';
$lower_letter_ansi = array('a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' );
$numbers = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9';
$numbers_ansi = array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9';
$other_chars = array('-', '.', '@', '_';
$other_chars_ansi = array('-', '.', '@', '_';
$email = str_replace($numbers, $numbers_ansi, $email);
$email = str_replace($upper_letter, $upper_letter_ansi, $email);
$email = str_replace($lower_letter, $lower_letter_ansi, $email);
$email = str_replace($other_chars, $other_chars_ansi, $email);
return $email;
}
// Die Funktionen funzt nicht, er wandelt die Ascii-Zeichen sofort um.
hier das Ganze online...
die Möglichkeit mit JS finde ich nicht gut, denn sie schließt gleich wieder einige User aus...