如何在php中回显ascii加密文本
我试图像这样回显一个 ascii 加密文本:
$x = encrypt("hello there");
echo $x;
加密函数返回,
hello there
但在屏幕上它打印为“你好”。
我怎样才能打印原始的ascii值?
I am trying to echo an ascii crypted text like this:
$x = encrypt("hello there");
echo $x;
the encrypt function returns
hello there
but on the screen it is printed as "hello there".
how can i print the original ascii value ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在加密周围使用
htmlentities()
来转义 &。You can use
htmlentities()
around encrypt to escape the &.