如何在php中回显ascii加密文本

时间:2011-11-29 07:48:34

标签: php javascript character-encoding escaping ascii

我试图回复像这样的ascii加密文本:

$x = encrypt("hello there");
 echo $x;

加密函数返回

&#104&#101&#108&#108&#111&#32&#116&#104&#101&#114&#101

但在屏幕上显示为“你好”。

如何打印原始的ascii值?

2 个答案:

答案 0 :(得分:2)

您可以在加密周围使用htmlentities()来转义&。

$x = htmlentities(encrypt("hello there"));
 echo $x;

答案 1 :(得分:1)

$x = encrypt("hello there");
echo htmlentities($x);