Hola a tod@s necesito su valiosa ayuda con este problema,
tengo esta función
Código PHP:
Ver originalfunction downloadZipFile($fileUrl){
$compressed = gzencode($fileContent, 9);
// download file
$ctype="application/octet-stream";
header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header("Cache-Control: private",false); header("Content-Type: $ctype"); header("Content-Disposition: attachment; filename=\"".basename($fileUrl).".gz\";" ); header("Content-Transfer-Encoding: binary"); header("Content-Length: ".$fileSize); echo $compressed;
}
esta función me sirve para agregar un archivo, comprimirlo y forzar su descarga
pero yo necesito agregar mas de un archivo
ojala me puedan ayudar.
Saludos