凯撒密码PHP

时间:2015-02-02 02:33:17

标签: php encryption

我从代码中得到2个错误。或1错误和1通知。

见下通知和问题

  

注意:未定义的偏移量:第19行的F:\ Xampp \ htdocs \ Encryption \ result.php中为0

     

警告:in_array()期望参数2为数组,字符串在第19行的F:\ Xampp \ htdocs \ Encryption \ result.php中给出

这是我的代码

的index.php

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
    <div id="encrypt" style="position:absolute; left:20%; top:25%;">
    <form method="post" action="result.php">
    <textarea rows="4" cols="50" name="toEncrypt">Enter message to encrypt</textarea>
    <br/>
    <input type="submit" name="encrypt" value="Encrypt">
    </form>
    </div>
    <div id="decrypt" style="position:absolute; right:20%; top:25%;">
    <form method="post" action="result.php">
    <textarea rows="4" cols="50" name="toDecrypt">Enter message to decrypt</textarea>
    <br/>
    <input type="submit" name="decrypt" value="Decrypt">
    </form>
    </div>
</body>

这是我的PHP文件。

<?php
$toEncrypt = $_POST['toEncrypt'];
//$toDecrypt = $_POST['toDecrypt'];
$key = array(
"A" => "B", "B" => "C","C" => "D", "D" => "E","E" => "F","F" => "G",
"G" => "H", "H" => "I", "I" => "J", "J" => "K","K" => "L",
"L" => "M","M" => "N", "N" => "O", "O" => "P", 
"P" => "Q","Q" => "R", "R" => "S","S" => "T","T" => "U", 
"U" => "V", "V" => "W", "W" => "X", "X" => "Y",
"Y" => "Z", "Z" => "Å", "Å" => "Ä", "Ä" => "Ö", "Ö" => "A"
);

//$text2 = $toDecrypt;

$length=strlen($toEncrypt);
$newstr='';
for ($i = 0; $i < $length; $i++) 
{
if (is_array($key) && in_array($toEncrypt[$i], $key[$i]))
{
$newstr=$key[$i];
}
}

echo $newstr;

我无法弄清楚出了什么问题,我认为这对我来说太明显了,请提前感谢。

1 个答案:

答案 0 :(得分:0)

您必须更改2行:

if (is_array($key) && in_array($toEncrypt[$i], $key[$i]))
//...
$newstr=$key[$i];

到此:

if (is_array($key) && in_array(strtoupper($toEncrypt[$i]), array_flip($key)))
                             //^^^^^^^^^^                  ^^^^^^^^^^ To search trough the keys and not the values
                             //|Because your array is in upper case
//...
$newstr .= $key[strtoupper($toEncrypt[$i])];
      //^^      ^^^^^^^^^^So you get the right key
      //|So you append the string