4

すべて、ユーザーが私のウェブサイトに画像をアップロードできるようにします。そのユーザーのために、ユーザーが自分の Web サイトから自分のサイトにアップロードしたすべての画像をダウンロードしたいと考えています。したがって、基本的にはユーザー名のドロップダウンを作成し、データベースを 1 つ選択すると、データベースにクエリを実行し、ダウンロードしたすべての画像を取得したいと考えています。その部分は問題ありません。

私の問題は、これらの各ファイルを調べて 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

次の 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 コマンド

および次のようなシステム コマンド

一般的にはより効率的です。

ファイルシステムのバックアップを作成し、以前のバックアップを上書きする私の例

$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 に答える