Search
 
SCRIPT & CODE EXAMPLE
 

PHP

Download multiple files as zip in PHP

<?php

/* create a compressed zip file */
function createZipArchive($files = array(), $destination = '', $overwrite = false) {

   if(file_exists($destination) && !$overwrite) { return false; }

   $validFiles = array();
   if(is_array($files)) {
      foreach($files as $file) {
         if(file_exists($file)) {
            $validFiles[] = $file;
         }
      }
   }

   if(count($validFiles)) {
      $zip = new ZipArchive();
      if($zip->open($destination,$overwrite ? ZIPARCHIVE::OVERWRITE : ZIPARCHIVE::CREATE) == true) {
         foreach($validFiles as $file) {
            $zip->addFile($file,$file);
         }
         $zip->close();
         return file_exists($destination);
      }else{
          return false;
      }
   }else{
      return false;
   }
}

$fileName = 'myzipfile.zip';
$files = array('uploads/profile1.jpeg', 'uploads/profile2.jpeg');
$result = createZipArchive($files, $fileName);

header("Content-Disposition: attachment; filename="".$fileName.""");
header("Content-Length: ".filesize($fileName));
readfile($fileName);

?>
Comment

how to make zip in php by multiple files

$files = array('readme.txt', 'test.html', 'image.gif');
$zipname = 'file.zip';
$zip = new ZipArchive;
$zip->open($zipname, ZipArchive::CREATE);
foreach ($files as $file) {
  $zip->addFile($file);
}
$zip->close();

header('Content-Type: application/zip');
header('Content-disposition: attachment; filename='.$zipname);
header('Content-Length: ' . filesize($zipname));
readfile($zipname);
Comment

lDownload multiple files as a zip-file using php

$files = array('readme.txt', 'test.html', 'image.gif');
$zipname = 'file.zip';
$zip = new ZipArchive;
$zip->open($zipname, ZipArchive::CREATE);
foreach ($files as $file) {
  $zip->addFile($file);
}
$zip->close();
Comment

PREVIOUS NEXT
Code Example
Php :: php remove last 3 letters from string 
Php :: php top frameworks 
Php :: php connection mysqli database 
Php :: array_last in laravel 8 
Php :: php number_format 
Php :: php foreach 
Php :: select sql in php 
Php :: php heredoc 
Php :: php days remaining 
Php :: PHP Simple HTML DOM 
Php :: turnery expression php 
Php :: form action php 
Php :: laravel hasmany count 
Php :: woocommerce bulk product delete 
Php :: php expire a session 
Php :: How to call soap api in php using curl method 
Php :: error in laravel 
Php :: target class usercontroller does not exist. in laravel 8 
Php :: php run command line 
Php :: wordpress is home page 
Php :: php datum formatieren 
Php :: php remove everything after symbol 
Php :: laravel db query 
Php :: php check if headers already sent 
Php :: get substring after character php 
Php :: laravel get data from this year 
Php :: get parameter php 
Php :: wordpress add_submenu_page 
Php :: remove text keep numbers only php 
Php :: phpexcel set data type string 
ADD CONTENT
Topic
Content
Source link
Name
2+3 =