PHP zip_entry_open() Function

In this chapter you will learn:

  1. Description for PHP zip_entry_open() Function
  2. Syntax for PHP zip_entry_open() Function
  3. Parameter for PHP zip_entry_open() Function
  4. Return for PHP zip_entry_open() Function
  5. Example - opens a zip archive entry for reading

Description

The zip_entry_open() function opens a zip archive entry for reading.

Syntax

PHP zip_entry_open() Function has the following syntax.

zip_entry_open(zip,zip_entry,mode)

Parameter

ParameterIs RequiredDescription
zipRequired.Zip resource to read (a zip file opened with zip_open() )
zip_entryRequired.Zip entry resource to open (a zip entry opened with zip_read() )

Return

This function returns TRUE on success, or FALSE on failure.

Example

Open a zip archive entry for reading


<?php//from   java 2s.c om
$zip = zip_open("test.zip");

if ($zip){
   while ($zip_entry = zip_read($zip)){
      echo "Name: " . zip_entry_name($zip_entry);
      if (zip_entry_open($zip, $zip_entry)){
  
      }
   }
   zip_close($zip);
}
?>

Next chapter...

What you will learn in the next chapter:

  1. Description for PHP zip_entry_read() Function
  2. Syntax for PHP zip_entry_read() Function
  3. Parameter for PHP zip_entry_read() Function
  4. Return for PHP zip_entry_read() Function
  5. Example - gets the contents from a open zip archive entry
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