<?php
header("Content-type: application/octet-stream");
require_once('pclzip.lib.php');

$ListaArchivos = "texto1.txt,texto2.txt,texto3.txt,texto4.txt";
$archivo_zip = new PclZip('Nombre_Fichero.zip');
if ($archivo_zip->create($ListaArchivos) == 0) {
       die('Error : '.$archivo_zip->errorInfo(true));
}
header("Content-disposition: attachment; filename=Nombre_Fichero.zip");
?> 