我正在使用 PHP 的 ZipArchive 类将生成的 PDF 文件添加到 zip 存档中。生成的 PDF 存储在 C:\pdfgenerator (不是我的 www 目录)中,而 zip 文件本身创建并存储在 C:\Program Files\Apache Software Foundation\Tomcat 6.0\webapps\med (我的网站所在的目录生活)。
这是我用来创建 PDF/Zip 并尝试将 PDF 存储在 Zip 中的代码:
/* build zip & directory for PDFs */
$zip = new ZipArchive;
$time = microtime(true);
if($res = $zip->open("pdf/mf-pdfs_" . $time . ".zip", ZipArchive::CREATE) === TRUE) {
echo "created";
} else {
echo "failed";
}
$num = 0;
while($row = mysql_fetch_array($result)) {
/* associate a random # assigned to each PDF file name */
$num++;
include($form);
$rand = rand(1,50000);
$file_num = $num * $rand;
$fo = fopen('c:\\pdfgenerator\\mf_pdf-' . $time . '-' . $file_num . '.html', 'w') or die("can't open file");
fwrite($fo, $output);
echo shell_exec('c:\wkhtmltopdf\wkhtmltoimage c:\\pdfgenerator\\mf_pdf-' . $time . '-' . $file_num . '.html c:\\pdfgenerator\\mf_pdf-' . $time . '-' . $file_num . '.jpeg');
/* the follow uses ghost script to execute the ImageMagick convert command from cmd.exe */
$magick_dir = 'C:\imagemagick' ; // install IM in short DOS 8.3 compatible path
$send_cmd=$magick_dir .'\convert c:\\pdfgenerator\\mf_pdf-' . $time . '-' . $file_num . '.jpeg -resize "1710x2200^!" c:\\pdfgenerator\\mf_pdf-' . $time . '-' . $file_num . '.jpeg' ;
$result = shell_exec($send_cmd);
$send_cmd=$magick_dir .'\convert c:\\pdfgenerator\\mf_pdf-' . $time . '-' . $file_num . '.jpeg c:\\pdfgenerator\\mf_pdf-' . $time . '-' . $file_num . '.pdf';
$result = shell_exec($send_cmd) ;
/* EO ghostscript code */
/* add the newly generated files to the Zip Archive */
if ($res === TRUE) {
//echo "RESULT TRUE...";
if($zip->addFile('c:/pdfgenerator/mf_pdf-' . $time . '-' . $file_num . '.pdf','c:/pdfgenerator/mf_pdf-' . $time . '-' . $file_num . '.pdf') === TRUE) {
echo "addded";
} else {
echo "not added";
}
//echo "FILE ADDED!";
}
/* EO Zip Archive */
}
当我将 PDF 和 Zip 文件存储在同一个父目录 (/med) 中时,脚本运行得非常好。
是否可以使用 Zip 存档类并将文件添加到不在同一父目录中的 Zip?我尝试了许多更改,但无法让 AddFile 正常工作。我错过了什么吗?