Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
$eingabe = "Kläglich ausgerüstet, stürmen reißerisch gröhlende Horden die Burgzinnen, während Xylophonspieler ein poppiges Liedchen klingeln.";
$normal = 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", "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", "Ä", "Ö", "Ü", "ä", "ö", "ü", "ß");
$verdreht = 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", "*+*", "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", "ZD", "ND", "TD", "zd", "nd", "td", "rr");
$ausgabe = str_replace($normal, $verdreht, $eingabe);
$z1 = array("+*+", "*+*");
$z2 = array("Z", "z");
$ausgabe = str_replace($z1, $z2, $ausgabe);
echo $ausgabe;