在PHP中压缩文件并使用密码进行保护

7uhlpewt  于 2023-01-01  发布在  PHP
关注(0)|答案(6)|浏览(335)

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

$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中压缩一个文件并用密码保护它呢?

icomxhvb

icomxhvb1#

使用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';
}
jtw3ybtb

jtw3ybtb2#

是,不支持创建密码保护的存档(它们将被简单地创建为不受保护的存档)。
但是,它仍然可以用来提取密码保护的档案。
回到问题上来。
你总是可以

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

(this可以在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可用于生产(因为ZipArchive::setEncryptionName已经实现(感谢Pierre和Remi))。
但是,在此之前,您还可以尝试将php_zip〉= 1.14.0移植到PHP〈7.2,但目前还没有编译好的二进制文件可用,所以您必须自己编译它,并尝试是否有可能(我相信有可能)。
我想试试,但是现在我的电脑上没有VS2015+。

gev0vcfq

gev0vcfq3#

ZipArchive::setPassword此函数仅设置用于解压缩存档的密码;它不会将非密码保护的ZipArchive转换成密码保护的ZipArchive。
工作代码:
$file = '要压缩的文件名.扩展名'
系统(“zip-P ZIP密码”.$文件。“. zip”.$文件);

pinkon5k

pinkon5k4#

从PHP 7.2开始,您可以使用setEncryptionName创建密码保护的ZIP压缩包。

o4hqfura

o4hqfura5#

documentation上所述:
此函数仅设置用于解压缩存档的密码;它不会将非密码保护的ZipArchive转换成密码保护的ZipArchive。
如果你想加密一个zip压缩包,我建议谷歌一点:)

ffscu2ro

ffscu2ro6#

当添加多个文件到zip压缩包时,您可以使用setPassword()方法一次性设置密码。

$zip = new ZipArchive();
$zip->open('zip_name.zip', ZipArchive::CREATE);

foreach ($files as $file) {
    $zip->addFile($file['path'], $file['name']);
    $zip->setEncryptionName($file['name'], ZipArchive::EM_AES_256);
}

$zip->setPassword('passW0rd');    
$zip->close();

相关问题