使用 PHP Phar 加密
是否可以对 Phar 存档进行加密/密码保护以启用闭源软件分发?
Is it possible to encrypt/password-protect a Phar archive to enable closed-source software distribution?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Phar 支持 zip,并且 zip 文件可以受密码保护。但是,每当收到请求时,您都需要一只猴子来输入 zip 密码。所以不,这对于闭源软件没有用。
但为了让这个答案变得有点严肃,不,它真的行不通:
Phar supports zip, and zip files can be password-protected. But you would need a monkey for typing in the zip password whenever a request comes in. So no, not useful for closed-source software.
But to make this a somewhat serious answer, no it really doesn't work:
那么,仅 phar 无法帮助您。寻找字节码编译器,例如 ioncube。
In that case, phar alone will not help you. Look for a bytecode compiler like ioncube.