将 JavaScript escape() 移植到 PHP

发布于 2024-10-03 16:45:06 字数 416 浏览 4 评论 0原文

我需要通过 PHP 使用 escape() 兼容函数转义整个 javascript 代码块,然后将生成的 JavaScript 代码放回到这样的代码构造中:

document.write(unescape(ESCAPED_JS));

我并不是试图通过这样做来提高安全性,保护代码或类似的东西。只是为了让浏览代码并了解它的作用变得更加困难。

有谁对此有可行的解决方案,或者知道如何做到这一点?我找到的关于它的唯一参考是此页面,但是它只处理使用 PHP 进行 JS 转义字符串的转义,但要特别注意 UTF-8 字符(我也需要考虑这一点)。

I need to escape entire javascript code block using escape() compatible function via PHP, and then put resulting JavaScript code back into a code construct like this:

document.write(unescape(ESCAPED_JS));

I'm not trying to increase security by doing this, protect code, or anything like that. Just to make it a bit harder to glance over a code and see what it does.

Does anyone have a working solution for this, or idea how to do it? The only reference I found about it is on this page, but it only deals with unescaping JS-escaped string using PHP, but by taking special care of UTF-8 characters (which I also need to consider).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

一个人的旅程 2024-10-10 16:45:06

escape 不是标准函数。最好使用 encodeURIComponent 或 JSON 代替。

escape is not a standard function. Better use encodeURIComponent or JSON instead.

太阳男子 2024-10-10 16:45:06

Gumbo 是对的(一如既往),但我认为 rawurlencoderawurldecode 是 js escapeunescape 的 php 等价物>

Gumbo is right (as always), but I think rawurlencode and rawurldecode are the php equivalents of js escape and unescape

清君侧 2024-10-10 16:45:06

您应该能够使用 urlencode 和 urldecode 来执行此操作。

http://php.net/manual/en/function.urlencode.php

You should be able to use urlencode and urldecode to do this.

http://php.net/manual/en/function.urlencode.php

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文