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

发布于 2024-12-18 21:29:45 字数 284 浏览 1 评论 0原文

我试图像这样回显一个 ascii 加密文本:

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

加密函数返回,

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

但在屏幕上它打印为“你好”。

我怎样才能打印原始的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

许一世地老天荒 2024-12-25 21:29:45

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

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

You can use htmlentities() around encrypt to escape the &.

$x = htmlentities(encrypt("hello there"));
 echo $x;
弥枳 2024-12-25 21:29:45
$x = encrypt("hello there");
echo htmlentities($x);
$x = encrypt("hello there");
echo htmlentities($x);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文