我正在使用TCPDF庫來即時創建PDF。對於我的應用程序,我希望用戶能夠將這些文檔批量下載到包含單個PDF文檔的ZIP文件中。有關我如何完成此任務的任何想法?如何將動態生成的PDF文件保存到zip文件中?
下面是一個測試腳本,試圖動態創建3個PDF文件。它目前只在運行時超時。
TCPDF文檔列出了不同的方法來輸出文件,但沒有一個似乎工作:
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');
?>
這有什麼代碼問題?它不起作用嗎? –
這裏的語義,但我只是想澄清一件事情給Windows用戶:沒有* * zip文件夾這樣的事情。* Zip文件存在,可以在內部模仿文件系統結構。一個* zip文件*只是一個文件。一個* zip文件夾*是一個假想的地方,獨角獸住:) – rdlowrey
上面的代碼不工作。拋出一些奇怪的TCPDF錯誤。我相信我目前的輸出「S」將文件保存爲字符串,這可能是問題所在? http://www.tcpdf.org/doc/classTCPDF.html#a3d6dcb62298ec9d42e9125ee2f5b23a1 – Michael