codeigniter — может создавать zip-архив на PHP, но не может загрузить его правильно

Я работаю над веб-приложением на основе CodeIgniter и реализую функциональность для загрузки zip-файла изображений автомобилей в админке для передачи третьим лицам.

Я могу создать zip-архив без проблем — если я закомментирую последующие части, я вижу, что zip-файл создается и содержит правильные файлы, и его можно извлечь как обычно.

Однако разрешить пользователю загружать файл после его создания довольно сложно. То, что я реализовал, позволяет загружать файл с правильным именем, но при разархивировании выдает следующее сообщение:

End-of-central-directory signature not found.  Either this file is not
a zipfile, or it constitutes one disk of a multi-part archive.  In the
latter case the central directory and zipfile comment will be found on
the last disk(s) of this archive.

Есть идеи, где я ошибся? Я проверил несколько учебников в Интернете и не смог найти, где проблема.

public function downloadvehicleimages()
{
// If logged in...
if ($this->adminuser)
{
// Get data
$usedcars = $this->adminmodel->getUsedCarsWithLimit();

// Get the registrations for these vehicles
$registrations = array();
foreach($usedcars->result_array() as $usedcar)
{
array_push($registrations, $usedcar['Registration']);
}

// Get all the images for these registrations
$images = array();
$original_dir = getcwd();
chdir('../used-cars/static/images/custom/');
foreach($registrations as $registration)
{
$vehicle_images = glob(strtoupper($registration) . '_*.jpg');
sort($vehicle_images);
foreach($vehicle_images as $vehicle_image)
{
array_push($images, $vehicle_image);
}
}

// Zip them up
$zipname = 'images.zip';
$zip = new ZipArchive;
$zip->open($zipname, ZipArchive::CREATE);
foreach($images as $image)
{
$zip->addFile($image);
}
$zip->close();

// Let user download the file
$this->output->set_header('Content-Type: application/zip');
$this->output->set_header('Pragma: no-cache');
$this->output->set_header('Expires: 0');
$this->output->set_header("Content-Disposition: attachment;filename='$zipname'");
$this->output->set_header('Content:Length: ' . filesize($zipname));
unlink($zipname);
chdir($original_dir);
}
}

-2

Решение

Вам нужно использовать fopen () для чтения содержимого zipfile и readfile () для передачи содержимого файла посетителю. А также, предоставьте полный системный каталог URI для расположения файлов:

        $filename = 'images.zip';
$path = /var/www/yourdomain.com/images.zip';
if(!file_exists($path))
{
die('Error: file not found');
}
else {
$handle = fopen($path, "r");
header('Content-Description: File Transfer');
header('Content-Type: application/zip');
header('Content-Disposition: attachment; filename='.$filename);
header('Content-Transfer-Encoding: binary');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Expires: 0');
header('Pragma: public');
header('Content-Length: ' . filesize($path));

flush();
readfile($path);
fclose($handle);
2

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]