PHP Ziparchive function does not work with more than one file

Asked

Viewed 613 times

2

The code is as follows::

$zip = new ZipArchive();
$criou = $zip->open("download.zip", ZipArchive::CREATE);
if ($criou === true){

    $diretorio = UPLOAD_DIR . 'produto/small/';

    foreach ($imagens as $imagem) {
        $zip->addFile($diretorio . $imagem->arquivo . '.' . $imagem->extensao, $imagem->arquivo . '.' . $imagem->extensao);
        echo $diretorio . $imagem->arquivo . '.' . $imagem->extensao;
        echo '<br />';
    }

    $zip->close();

}else {
    echo 'Erro: '.$criou;
}

The result of echo within the foreach is presented perfectly, without errors, as follows:

/site/public/uploads/produto/small/BN-260-A.jpg
/site/public/uploads/produto/small/BN-260-B.jpg
/site/public/uploads/produto/small/BN-261.jpg
/site/public/uploads/produto/small/BN-373.png
/site/public/uploads/produto/small/BN-10125-A.jpg

However, the downloaded file generates a loop with a file.

1 answer

4


Important to check whether the file is actually being saved in full when closing:

if ( $zip->close() ) {
   echo 'Arquivo fechado com sucesso';
} else {
   echo 'Problemas no fechamento';
}

Another relevant step is to make sure that the file exists and is readable:

foreach ($imagens as $imagem) {
   $caminho_relativo = $imagem->arquivo.'.'.$imagem->extensao;
   $caminho_absoluto = $diretorio.$caminho_relativo;
   if ( file_exists( $caminho_absoluto ) && is_readable( $caminho_absoluto ) ) {
      $zip->addFile( $caminho_absoluto, $caminho_relativo );
      echo $caminho_absoluto.' adicionado<br />';
   else {
      echo $caminho_absoluto.' com problemas<br />';
   }
}

Browser other questions tagged

You are not signed in. Login or sign up in order to post.