如何从 PHP 应用程序中提取受密码保护的 .zip 文件?
如何从 PHP 应用程序中提取受密码保护的 .zip
文件?
How can I extract a password protected .zip
file from within my PHP application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 PHP 5.6.0 开始,您可以使用类 ZipArchive。可以通过使用 setPassword 设置密码来解密加密文件() 方法。
Since PHP 5.6.0 you can use the class ZipArchive. Encrypted files can be decrypted by setting a password with the setPassword() method.
您可以使用它(假设您的服务器具有“正确的”操作系统:-))
You can use this (assuming your server has the "right" os :-))