4

所有,我允许用户上传图片到我的网站。对于该用户,我想下载用户从我的网站上传到我的网站的所有图像。所以我想基本上有一个用户名的下拉列表,然后当我选择一个查询我的数据库并获取他们下载的所有图像时。那部分没有问题。

我的问题是我怎样才能浏览这些文件并将它们放入一个 zip 文件夹,然后下载 zip 文件夹(如果可能的话)。

关于如何去做这样的事情的任何想法?

提前致谢!

编辑:我知道如何使用以下代码压缩文件后下载文件:

header('Content-Type: application/zip');
header('Content-disposition: attachment; filename=filename.zip');
header('Content-Length: ' . filesize($zipfilename));
readfile($zipname);
4

3 回答 3

2

结合使用这两个功能:

http://davidwalsh.name/create-zip-php

http://php.net/manual/en/function.readdir.php

于 2012-07-10T19:34:19.707 回答
2

感谢@maxhud 的帮助,我能够想出完整的解决方案。这是用于实现我想要的结果的最终代码片段:

<?php
/* creates a compressed zip file */
function create_zip($files = array(),$destination = '',$overwrite = true) {
  //if the zip file already exists and overwrite is false, return false
  if(file_exists($destination) && !$overwrite) { return false; }
  //vars
  $valid_files = array();
  //if files were passed in...
  if(is_array($files)) {
    //cycle through each file
    foreach($files as $file) {
      //make sure the file exists
      if(file_exists($file)) {
        $valid_files[] = $file;
      }
    }
  }
  //if we have good files...
  if(count($valid_files)) {
    //create the archive
    $zip = new ZipArchive();
    if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) !== true) {
      return false;
    }
    //add the files
    foreach($valid_files as $file) {
      $zip->addFile($file,$file);
    }
    //debug
    //echo 'The zip archive contains ',$zip->numFiles,' files with a status of ',$zip->status;

    //close the zip -- done!
    $zip->close();

    //check to make sure the file exists
    return file_exists($destination);
  }
  else
  {
    return false;
  }
}



$files_to_zip = array(
  'upload/1_3266_671641323389_14800358_42187034_1524052_n.jpg', 'upload/1_3266_671641328379_14800358_42187035_3071342_n.jpg'
);
//if true, good; if false, zip creation failed
$zip_name = 'my-archive.zip';
$result = create_zip($files_to_zip,$zip_name);

if($result){
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename=filename.zip');
header('Content-Length: ' . filesize($zip_name));
readfile($zip_name);
}
?>
于 2012-07-10T20:11:41.030 回答
1

一个 PHP 命令,可让您运行系统命令

和一个系统命令,比如

一般效率更高。

我的 EX 创建文件系统的备份并覆盖以前的备份

$uploads = wp_upload_dir();
$file_name  = 'backup_filesystem.tar.gz';
unlink($uploads['basedir'] . '/' . $file_name);

ob_start();
$output = shell_exec(sprintf('tar -zcvf %s/%s %s', $uploads['basedir'], $file_name, ABSPATH));
ob_end_clean();

注意:输出缓冲区以防您的 php to shell 命令有输出并且您不希望标头已发送错误

于 2012-07-10T19:43:20.417 回答