我正在尝试按需构建自定义 zip 文件,并找到了一些似乎可以正常工作的代码 http://www.9lessons.info/2012/06/creating-zip-file-with-php.html
我已经在我的 wordpress 模板中插入了代码,唯一的事情是header()
必须在加载模板之前发送
我怎么能用wordpress做到这一点?
这是带有标题的代码
$zip = new ZipArchive(); // Load zip library
$zip_name = time().".zip"; // Zip name
if($zip->open($zip_name, ZIPARCHIVE::CREATE)!==TRUE){ // Opening zip file to load files
$error .= "* Sorry ZIP creation failed at this time<br/>";
}
foreach($post['files'] as $file){
$zip->addFile($file_folder.$file); // Adding files into zip
}
$zip->close();
if(file_exists($zip_name)){
// push to download the zip
header('Content-type: application/zip');
header('Content-Disposition: attachment; filename="'.$zip_name.'"');
readfile($zip_name);
// remove zip file is exists in temp path
unlink($zip_name);
}