$createZip = new createZip;
$file = "FILE";
$createZip - >addFile($file, "file.data");
//
$file = file_get_contents("file.data");
$createZip->addFile($file, "file.data");
$fileName = "file.zip";
$fd = fopen ($fileName, "wb");
$out = fwrite ($fd, $createZip -> getZippedfile());
fclose ($fd);
//
$createZip -> forceDownload($fileName);
Source: https://habr.com/ru/post/45015/
All Articles