ZipArchive::close

(PHP 5 >= 5.2.0, PECL zip >= 1.1.0)

ZipArchive::closeЗакрывает активный архив (открытый или вновь созданный)

Описание

bool ZipArchive::close ( void )

Закрывает открытый или созданный архив и сохраняет изменения. Данный метод автоматически вызывается в конце сценария.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

Возвращает TRUE в случае успешного завершения или FALSE в случае возникновения ошибки.

Коментарии

Don't forget to check the zip isn't empty, folks - otherwise the zip won't be created at all, and the server will issue no warning!

I used a certain loop to add files to the zip, and struggled with permissions and documentation for hours before I realize the loop ended up adding no file, even though addFile WAS called, but on a non-existent file.
This might be the reason your zips aren't popping up.
2007-10-22 14:16:53
http://php5.kiev.ua/manual/ru/ziparchive.close.html
It may seem a little obvious to some but it was an oversight on my behalf.

If you are adding files to the zip file that you want to be deleted make sure you delete AFTER you call the close() function.

If the files added to the object aren't available at save time the zip file will not be created.
2009-09-02 21:08:13
http://php5.kiev.ua/manual/ru/ziparchive.close.html
Автор:
If you're adding multiple files to a zip and your $zip->close() call is returning FALSE, ensure that all the files you added actually exist. Apparently $zip->addFile() returns TRUE even if the file doesn't actually exist. It's a good idea to check each file with file_exists() or is_readable() before calling $zip->addFile() on it.
2010-12-29 14:58:31
http://php5.kiev.ua/manual/ru/ziparchive.close.html
Please note you must have write permissions to file and directory where the files is placed to save the archive.
2011-03-12 15:40:19
http://php5.kiev.ua/manual/ru/ziparchive.close.html
If you have created a zip file and added a file to it without error, yet the ZipArchive::close call fails (with ER_TMPOPEN: "Failure to create temporary file") and the zip file is not created, check to see if your ZipArchive::open call specifies a pathname containing nonexisting directories. If you expect a containing hierarchy of one or more directories, you must create them yourself before using using ZipArchive. You can write a simple function to recurse using dirname to find each parent directory, creating those that don't exist by using mkdir when leaving the recursion.
2011-05-19 16:14:38
http://php5.kiev.ua/manual/ru/ziparchive.close.html
Pay attention, that ZipArchive::addFile() only opens file descriptor and does not compress it. And only ZipArchive::close() compress file and it take quite a lot of time. Be careful with timeouts.
2014-08-08 04:22:19
http://php5.kiev.ua/manual/ru/ziparchive.close.html
ZipArchive.close() changes its behaviour in PHP7. The function ignores directories in PHP5 but fails in PHP7 with: 

Unexpected PHP error [ZipArchive::close(): Read error: Is a directory]

The following code works in PHP5 but not in PHP7:

<?php 
// test.php
$zip = new ZipArchive();
$zip->open('/tmp/test.zip'ZipArchive::CREATE);
$zip->addFile('.''.');
$ret $zip->close();
echo 
"Closed with: " . ($ret "true" "false") . "\n";
?>

For php5:

php --version
  PHP 5.5.38-1-avature-ondrej-fork (cli) (built: Aug 31 2016 16:37:38)

php test.php
  Closed with: true

For php7:

php --version
  PHP 7.0.8-0ubuntu0.16.04.2 (cli) ( NTS )

php test.php
  Closed with: false
2016-09-28 14:05:58
http://php5.kiev.ua/manual/ru/ziparchive.close.html
Автор:
If you open archive without flags in PHP 5.6 then you can get errors on close:
Warning: ZipArchive::close(): Zip archive inconsistent in
And changes not saved.
You need use flag ZIPARCHIVE::OVERWRITE on $zip->open.

This issue happens for me only in php 5.6. In php 5.4 and before it works without any flags to $zip->open.
2017-01-08 20:22:23
http://php5.kiev.ua/manual/ru/ziparchive.close.html
Автор:
I am not sure, but seems that $zip->close() can run into errors if the path specified in $zip->open is a relative path, not absolute.
So, when create archives, please specify ABSOLUTE PATH, not relative path for zip file to be created.
2021-12-16 16:22:21
http://php5.kiev.ua/manual/ru/ziparchive.close.html
Автор:
If you get an error like "ZipArchive::close(): Renaming temporary file failed: Permission denied" at random times, check your antivirus software (e.g. Trellix), which may block writing while scanning the file. In my case, I had to check with flock until file is unlocked.
2023-02-28 10:33:41
http://php5.kiev.ua/manual/ru/ziparchive.close.html

    Поддержать сайт на родительском проекте КГБ