$files = array("images/1.jpg", "images/2.jpg", "images/3.jpg");
foreach($files as $file){
$temp = null;
$fp_in = fopen($file,'rb');
while(!feof($fp_in)){
$temp .= fread($fp_in,1024);
}
$output[$file] = $temp;
fclose($fp_in);
}
$output = implode('"',$output);
$zp = gzopen( 'sequences/backup.gz', "w9" );
gzwrite( $zp, $output );
gzclose( $zp );
The code above works but only one file is added to the archive. What is the best way to add multiple files to a archive using zLib?
.tar.gzfiles on unix;.tarfor the union of all files and the.gzto compress the archive. – Tim Cooper Mar 2 '11 at 1:53