你能帮我理解为什么这是我的php函数的输出吗?

时间:2017-03-14 18:47:33

标签: php ascii

我有这个功能:

function dec($dec)
{
    $ans="";
    for($x=0; $x<strlen($dec);$x++)
    {
        $tempAscii = ord(substr($dec,$x,1)) - ($x+1)*2; //((int)dec[x] - (x+1)*2)
        while ($tempAscii <0) $tempAscii+=256;
        echo $tempAscii,", ";
        $ans = $ans . chr($tempAscii); 
    }
    return $ans;
}
echo "dec, ", dec($_GET['word']);
例如,那些dec结果就好了:

input: as output: _o middle output: 95, 111
input: SHA256 output: QD;*+* middle output:  81, 68, 59, 42, 43, 42

但是当我尝试这个输入时,我得到了一些奇怪的东西:

input: $@SHA256*!# output: " middle output: 34, 60, 77, 64, 55, 38, 39, 38, 24, 13, 13

我不确定我得到这个输出的原因是因为我在我的功能中犯了错误,还是有其他原因。为什么我得到"作为最后的结果?感谢。

编辑:我使用firefox查看结果。 编辑:<似乎是问题所在。似乎firefox将其视为&#34;小于&#34; ...如何将其更改为> char而没有任何意义?

1 个答案:

答案 0 :(得分:0)

以下是解决方案: 正如@kyeiti之前提到的,浏览器试图将此字符串解释为代码。

根据this question我使用命令htmlspecialchars解决了这个问题。所以现在我的代码是:

echo htmlspecialchars(enc($_GET['word']));
非常感谢!