用zip文件下载图像

时间:2016-03-14 12:20:56

标签: php ajax image pdf zip

我正在从API生成动态图像。

点击按钮,我想下载带图片的zip文件。

我尝试了很多解决方案,但仍然无法下载带图像的zip文件

1 个答案:

答案 0 :(得分:0)

$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()