PHP zip_close() Function

In this chapter you will learn:

  1. Description for PHP zip_close() Function
  2. Syntax for PHP zip_close() Function
  3. Parameter for PHP zip_close() Function
  4. Return for PHP zip_close() Function
  5. Example - Close a zip file

Description

The zip_close() function closes a zip archive opened by the zip_open() function.

Syntax

PHP zip_close() Function has the following syntax.

zip_close(zip)

Parameter

ParameterIs RequiredDescription
zipRequired.Zip resource to close (a zip file opened with zip_open() )

Return

No value is returned.

Example

Close a zip file


<?php
$zip = zip_open("test.zip");
zip_close($zip);
?>

Next chapter...

What you will learn in the next chapter:

  1. Description for PHP zip_entry_close() Function
  2. Syntax for PHP zip_entry_close() Function
  3. Parameter for PHP zip_entry_close() Function
  4. Return for PHP zip_entry_close() Function
  5. Example - closes a zip archive opened by the zip_entry_open() function
Home » PHP Tutorial » PHP Zip Functions
PHP Zip Library Installation
PHP zip_close() Function
PHP zip_entry_close() Function
PHP zip_entry_compressedsize() Function
PHP zip_entry_compressionmethod() Function
PHP zip_entry_filesize() Function
PHP zip_entry_name() Function
PHP zip_entry_open() Function
PHP zip_entry_read() Function
PHP zip_open() Function
PHP zip_read() Function