我试图回复像这样的ascii加密文本:
$x = encrypt("hello there");
echo $x;
加密函数返回
hello there
但在屏幕上显示为“你好”。
如何打印原始的ascii值?
答案 0 :(得分:2)
您可以在加密周围使用htmlentities()
来转义&。
$x = htmlentities(encrypt("hello there"));
echo $x;
答案 1 :(得分:1)
$x = encrypt("hello there");
echo htmlentities($x);