Javascript 缩小和 PHP 缩小变量

发布于 2024-12-16 13:40:13 字数 390 浏览 0 评论 0原文

我一直在寻找某种 JavaScript 混淆脚本,请注意,我不是在寻找压缩器,我需要一个混淆脚本/代码来缩小我在 PHP 中(而不是 JavaScript)中的 JavaScript 文件生产原因。

我听说过 Minify,我用过它几次,效果很好,但它不会混淆我的 JS 代码,这就是我所需要的,就像 Dean Edwards 加壳器 但没有加壳,只是 PHP 中的收缩变量模式而不是 JS。

编辑:我的错误,我错误地理解了“混淆”,我的意思是对 JS 代码的缩小 - 缩小变量名称并删除空格等。 Minify 是我最接近的,但它不会缩小变量。

那里有吗?

I've been looking around SO for a JavaScript obfuscation script of some kind, note that I'm not looking for a compressor, I need an obfuscation script/code that will shrink the JavaScript files I have in PHP (not in JavaScript) for production reasons.

I've heard about Minify, I've used it a couple times, works great but it doesn't obfuscate my JS code, simply that is all I need to have, think like the Dean Edwards packer but without packing it, just the shrink variables mode in PHP instead of JS.

EDIT: My mistake, I understood "obfuscate" wrongly, I mean minification on the JS code - shrinking variable names and removing whitespace, etc. Minify is the closest I got to, but it does not shrink variables.

Is there one out there?

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

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

发布评论

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

评论(4

若能看破又如何 2024-12-23 13:40:13
exec('java.exe -jar compiler.jar --js pre.js --manage_closure_dependencies true --js_output_file end.js');

exec('java.exe -jar yuicompressor.jar pre.js  -o end.js');

使用:

谷歌闭包编译器和
http://developer.yahoo.com/yui/compressor/

exec('java.exe -jar compiler.jar --js pre.js --manage_closure_dependencies true --js_output_file end.js');

exec('java.exe -jar yuicompressor.jar pre.js  -o end.js');

use:

google closure compiler AND
http://developer.yahoo.com/yui/compressor/

用心笑 2024-12-23 13:40:13

我们的 ECMAScript Obfuscator 可能会满足您的需求。特别是,它会在 PHP 文件中找到 JavaScript 块,并根据您的需要进行混淆/缩小。

Our ECMAScript Obfuscator probably does what you want. In particular, it will find JavaScript chunks in PHP files and obfuscate/minify depending on what you want.

别忘他 2024-12-23 13:40:13

我很确定这就是您正在寻找的。我不知道您是否能够找到比 Google 更好的解决方案:http://code.google.com/speed/articles/compressing-javascript.html

I'm pretty sure this is what you're looking for. And I dont' know if you'll be able to find a solution that does it better than Google: http://code.google.com/speed/articles/compressing-javascript.html

涙—继续流 2024-12-23 13:40:13

我知道这是一个老问题 - 但它需要一个更新的答案,因为现在有 jsMin 的 PHP 实现,

例如: http ://wonko.com/post/a_faster_jsmin_library_for_php

注意:当你说“收缩变量”时,澄清一下很重要:大多数缩小器只会缩小函数内的局部变量,但保留全局变量和函数名称——因为重命名这些变量可能会破坏与页面/DOM元素/其他脚本等的互操作性。

I know this is an old question -- but it needs an updated answer, as there are now PHP implementations of jsMin

eg: http://wonko.com/post/a_faster_jsmin_library_for_php

Note: When you say "shrink variables" it's important to clarify: Most minifiers will only shrink local variables within functions, but leave globals and function names -- as renaming those would likely break interoperability with the page / DOM elements / other scripts, etc.

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