I am using the TCPDF library to create PDFs on the fly. For my application, I'd like the user to be able to batch download these documents into a ZIP file containing individual PDF documents. Any ideas on how I might accomplish this?

Below is a test script to try and create three PDFs on the fly. It currently just times out when run.

TCPDF documentation lists different methods for outputting files, but none seem to work:

http://www.tcpdf.org/doc/classTCPDF.html#a3d6dcb62298ec9d42e9125ee2f5b23a1

<?php
/* creates a compressed zip file */
function create_zip($files = array(),$destination = '',$overwrite = false) {
  //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;
  }
}
date_default_timezone_set('America/Los_Angeles');

$files_to_zip = array();

require_once('../../libraries/tcpdf/tcpdf.php');

for($i=0;$i < 2 ;$i+1){

    $pdf = new TCPDF();

    $pdf->AddPage('P', 'Letter'); 

    $txt = 'Test '.$i;

    $pdf->MultiCell(1, 1, $txt);

    $filename = $pdf->Output('test'.$i.'.pdf', 'S');  

    $files_to_zip[] = $filename;

}

//if true, good; if false, zip creation failed
$result = create_zip($files_to_zip,'my-archive.zip');

header('Content-type: application/zip');
header('Content-Disposition: attachment; filename="my-archive-test.zip"');
readfile('my-archive-test.zip');

?>
link|improve this question

80% accept rate
What is the problem with this code? Does it not work? – gms8994 Jan 23 at 21:12
3  
Semantics here, but I just want to clarify one thing to windows users: there is no such thing as a "zip folder." Zip files exist and can mimic a filesystem structure internally. A zip file is just a file. A zip folder is an imaginary place where unicorns live :) – rdlowrey Jan 23 at 21:14
Code above is not working. Throwing some weird TCPDF errors. I believe the current output I have, "S", saves the file as a string, which is maybe the problem? tcpdf.org/doc/classTCPDF.html#a3d6dcb62298ec9d42e9125ee2f5b23a1 – Michael Jan 23 at 21:17
@rdlowrey what's wrong with unicorns?! :) – Michael Jan 23 at 21:18
feedback

2 Answers

I'm not sure that it will solve your problem, but don't you need:

$files_to_zip[$i] = $filename;

instead of:

$files_to_zip[] = $filename;

???

link|improve this answer
no he doesn't. In PHP when you append to an array with empty brackets it just appends it at the end with the next numeric index. – davidethell May 15 at 20:11
feedback

Change your Output call to pass 'F' instead of 'S' since you need the PDF as a file in order to zip it.

As for the timeout, have you tried increasing the PHP timeout with set_time_limit()? If your server allows that function just try set_time_limit(90) or longer as needed to see if the script is working.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.