如何从PHP应用程序中提取受密码保护的.zip文件?

最佳答案

您可以使用它(假设您的服务器具有“正确的”操作系统:-))

echo shell_exec('unzip -P password file.zip');

10-08 05:11