PHP를 사용하여 여러 파일을 zip 파일로 다운로드


답변:


212

당신이 사용할 수있는 ZipArchiveZIP 파일을 생성하는 클래스를 그것은 클라이언트에 스트리밍. 다음과 같은 것 :

$files = array('readme.txt', 'test.html', 'image.gif');
$zipname = 'file.zip';
$zip = new ZipArchive;
$zip->open($zipname, ZipArchive::CREATE);
foreach ($files as $file) {
  $zip->addFile($file);
}
$zip->close();

스트리밍하려면 :

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

두 번째 행은 브라우저가 사용자에게 다운로드 상자를 표시하도록하고 filename.zip이라는 이름을 프롬프트합니다. 세 번째 줄은 선택 사항이지만 특정 (주로 오래된) 브라우저는 콘텐츠 크기를 지정하지 않고 특정 경우에 문제가 있습니다.


4
$zip = new ZipArchive;대신 해야하지 $zip = new ZipFile;않습니까?
Matthieu

@Matthieu 괄호는 필요하지 않습니다. 예제를보십시오 : php.net/manual/en/ziparchive.open.php
Lars Gyrup Brink Nielsen

1
$ zipfilename 변수는 무엇을 의미합니까?
Pascal Klein

$ zipfilename은 $ zipname이어야합니다. 문자열로 생성 된 zip의 파일 이름입니다.
Chris

1
Windows 기본 zip 오프너에서는 작동하지 않지만 win 지퍼 또는 7-zip에서는 작동합니다. 나는 지퍼 폴더에 이미지를 추가 한 다음 우편으로 다운로드하기 위해 노력하고있어
RN Kushwaha을

36

다음은 PHP에서 ZIP을 만드는 작업 예제입니다.

$zip = new ZipArchive();
$zip_name = time().".zip"; // Zip name
$zip->open($zip_name,  ZipArchive::CREATE);
foreach ($files as $file) {
  echo $path = "uploadpdf/".$file;
  if(file_exists($path)){
  $zip->addFromString(basename($path),  file_get_contents($path));  
  }
  else{
   echo"file does not exist";
  }
}
$zip->close();

2
이 답변이 작동합니다! 차이점은 addFromString이고 addFile은 잘못 코딩되었습니다.
André Catita 2013 년


1

php zip lib로 할 준비가되었고 zend zip lib도 사용할 수 있습니다.

<?PHP
// create object
$zip = new ZipArchive();   

// open archive 
if ($zip->open('app-0.09.zip') !== TRUE) {
    die ("Could not open archive");
}

// get number of files in archive
$numFiles = $zip->numFiles;

// iterate over file list
// print details of each file
for ($x=0; $x<$numFiles; $x++) {
    $file = $zip->statIndex($x);
    printf("%s (%d bytes)", $file['name'], $file['size']);
    print "
";    
}

// close archive
$zip->close();
?>

http://devzone.zend.com/985/dynamically-creating-compressed-zip-archives-with-php/

http://www.php.net/manual/en/class.ziparchive.php에 대한 php pear lib도 있습니다 .

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.