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.
// $input ist der zu verschlüsselnde Text, $diff die Anzahl stellen um das Alphabet zu verschieben
function plain2caesar($input, $diff)
{
// Alles in Grossbuchstaben umwandeln
$tmp = strtoupper($input);
$signs = 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');
$anzahl = count($signs);
echo $anzahl;
for ($x=0;$x<$anzahl;$x++)
{
if (($x-$anzahl+$diff)>=0)
{
$signs2[$x] = $signs[$x-$anzahl+$diff];
}
else
{
$signs2[$x] = $signs[$x+$diff];
}
}
return str_replace($signs,$signs2,$tmp);
}