如何混淆 Symfony PHP Web 应用程序?
我正在寻找分发 symfony Web 应用程序,但不想透露其源代码。
我知道混淆 PHP 很困难,但我想知道是否有任何封闭或开源解决方案来混淆和/或编码后端代码,以便接收应用程序的人可以运行它,但无法查看源代码代码?
I am looking to distribute a symfony web app, but don't want to reveal its source code.
I know it is tough to obfuscate PHP, but I was wondering if there are any closed or open source solutions to obfuscate and/or encode the backend code so that someone receiving the app can run it but wouldn't be able to view the source code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
phc(PHP 编译器)有一个
--obfuscate
标志phc (a PHP compiler) has an
--obfuscate
flagIonCube 是一个 PHP 编码器。这意味着您的所有客户都需要在其服务器上安装 ionCuber 库,但他们可能不想这样做。
IonCube is a PHP encoder. It means that all your customers will need to install the ionCuber libraries on their server, which they may not want to do.
我认为 Ioncube 和 Zend Guard 不能与 symfony 一起使用,因为自动加载。
I think Ioncube and Zend Guard don't work with symfony because the autoloading.