将 JavaScript escape() 移植到 PHP
我需要通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
escape
不是标准函数。最好使用encodeURIComponent
或 JSON 代替。escape
is not a standard function. Better useencodeURIComponent
or JSON instead.Gumbo 是对的(一如既往),但我认为
rawurlencode
和rawurldecode
是 jsescape
和unescape
的 php 等价物>Gumbo is right (as always), but I think
rawurlencode
andrawurldecode
are the php equivalents of jsescape
andunescape
您应该能够使用 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