压缩文件并使用PHP密码保护

时间:2016-10-03 14:02:06

标签: php zip password-protection

我有这个代码来压缩文件,但我需要用密码保护这个文件

$file = 'backup.sql';
$zipname = $file.'.zip';
$zip = new ZipArchive;
$zip->open($zipname, ZipArchive::CREATE);
ZipArchive::setPassword('123456');
//$zip->setPassword("123456");
$zip->addFile($file);
$zip->close();

当我使用$ zip-> setPassword时我没有得到任何错误,但文件根本没有受到保护,当我使用ZipArchive :: setPassword时,我收到此错误"致命错误:非 - 静态方法ZipArchive :: setPassword()不能静态调用"

那么如何在php中压缩文件并用密码保护呢?

5 个答案:

答案 0 :(得分:11)

使用PHP 7.2创建受密码保护的zip文件:

$zip = new ZipArchive;
$res = $zip->open('filename.zip', ZipArchive::CREATE); //Add your file name
if ($res === TRUE) {
   $zip->addFromString('FILENAME_WITH_EXTENSION', 'file content goes here'); //Add your file name
   $zip->setEncryptionName('FILENAME_WITH_EXTENSION', ZipArchive::EM_AES_256, 'PASSWORD'); //Add file name and password dynamically
   $zip->close();
   echo 'ok';
} else {
   echo 'failed';
}

答案 1 :(得分:4)

是的,不支持创建受密码保护的存档(它们将仅作为未受保护的存档创建) 但是,它仍可用于提取受密码保护的档案。

回到问题。
你总是可以

<?php echo system('zip -P pass file.zip file.txt'); ?>

(这将适用于Windows和我们心爱的Linux)

但是,如果它不符合您的要求,请继续 我建议你使用DotNetZip(仅限Windows),你将完全动态地从PHP生成AES加密的zip档案。

<?php
// origin: https://stackoverflow.com/a/670804/3684575
try
{
  $fname = "zip-generated-from-php-" . date('Y-m-d-His') . ".zip";
  $zipOutput = "c:\\temp\\" . $fname;
  $zipfact = new COM("Ionic.Zip.ZipFile");
  $zip->Name = $zipOutput;
  $dirToZip= "c:\\temp\\psh";
  # Encryption:  3 => 256-bit AES.  
  #     2 => 128-bit AES.  
  #     1 => PKZIP (Weak).  
  #     0 => None
  $zip->Encryption = 3;
  $zip->Password = "AES-Encryption-Is-Secure";
  $zip->AddDirectory($dirToZip);
  $zip->Save();
  $zip->Dispose();

  if (file_exists($zipOutput))
  {
    header('Cache-Control: no-cache, must-revalidate');
    header('Content-Type: application/x-zip'); 
    header('Content-Disposition: attachment; filename=' . $fname);
    header('Content-Length: ' . filesize($zipOutput));
    readfile($zipOutput);
    unlink($zipOutput);
  }
  else 
  {
    echo '<html>';
    echo '  <head>';
    echo '  <title>Calling DotNetZip from PHP through COM</title>';
    echo '  <link rel="stylesheet" href="basic.css"/>';
    echo '  </head>';
    echo '<body>';
    echo '<h2>Whoops!</h2>' . "<br/>\n";
    echo '<p>The file was not successfully generated.</p>';
    echo '</body>';
    echo '</html>';
  } 
}
catch (Exception $e) 
{
    echo '<html>';
    echo '  <head>';
    echo '  <title>Calling DotNetZip from PHP through COM</title>';
    echo '  <link rel="stylesheet" href="basic.css"/>';
    echo '  </head>';
    echo '<body>';
    echo '<h2>Whoops!</h2>' . "<br/>\n";
    echo '<p>The file was not successfully generated.</p>';
    echo '<p>Caught exception: ',  $e->getMessage(), '</p>', "\n";
    echo '<pre>';
    echo $e->getTraceAsString(), "\n";
    echo '</pre>';
    echo '</body>';
    echo '</html>';
}

?>

但是,这仍然是非常脏的解决方案,更多的是,不适用于Linux。

所以,虽然PHP是一种成熟的语言,但没有足够的方法(不包括自定义扩展或类似的东西)来实现纯PHP的这么简单的任务。
您还可以做的是等到PHP 7.2可用于生产(cuz ZipArchive::setEncryptionName已实施(感谢Pierre和Remi))。
但是,在此之前,您还可以尝试将php_zip&gt; = 1.14.0移植到PHP&lt; 7.2,但目前没有可用的已编译二进制文件,所以你必须自己编译并尝试它是否可行(我相信它是)。
附:我会尝试一下,但现在我的电脑上没有VS2015 +。

答案 2 :(得分:2)

ZipArchive::setPassword 此功能仅设置用于解压缩存档的密码;它不会将非密码保护的ZipArchive变成受密码保护的ZipArchive。

工作代码:

$ file =&#39; file_name_to_be_compressed.extension&#39;

系统(&#39; zip -P ZIP_PASSWORD&#39;。$ file。&#39; .zip&#39;。$ file);

答案 3 :(得分:1)

自PHP 7.2起,您可以使用setEncryptionName创建受密码保护的ZIP存档。

答案 4 :(得分:0)

正如documentation

所述
  

此功能仅设置用于解压缩存档的密码;它不会将非密码保护的ZipArchive变成受密码保护的ZipArchive。

如果你想加密一个zip档案,我建议google :)