From 7d131904cf731e1b6dc173cd252c1ac468330750 Mon Sep 17 00:00:00 2001 From: Daniel Beckham Date: Thu, 31 May 2001 19:36:57 +0000 Subject: [PATCH] - converted from zzip to zip - renamed functions as per ext/zip/zip.c - still need examples and documentation for zip_entry_open and zip_entry_read before adding a reference to manual.xml.in git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@48951 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/zip.xml | 199 +++++++++++++++++++++++----------------------- 1 file changed, 99 insertions(+), 100 deletions(-) diff --git a/functions/zip.xml b/functions/zip.xml index 1141d4f991..6330a30497 100644 --- a/functions/zip.xml +++ b/functions/zip.xml @@ -41,178 +41,177 @@ - + - zzip_close - Close a ZZip Entry + zip_close + Close a Zip File Archive Description - void zzip_close - resource zzip_entry - - - - Closes a directory entry specified by - zzip_entry. The parameter - zzip_entry must be a valid directory entry - opened by zzip_open. - - - This function has no return value. - - - See also zzip_open and - zzip_read. - - - - - - - zzip_closedir - Close a ZIP File Archive - - - Description - - - void zzip_closedir - resource zzip + void zip_close + resource zip Closes a zip file archive. The parameter - zzip must be a zip archive previously - opened by zzip_opendir. + zip must be a zip archive previously + opened by zip_open. This function has no return value. - See also zzip_opendir and - zzip_readdir. + See also zip_open and + zip_read. - - + - zzip_entry_compressedsize - Retrive the Compressed Size of a ZZIP Entry + zip_close + Close a Zip Entry Description - int zzip_entry_compressedsize - resource zzip_entry + void zip_close + resource zip_entry + + + + Closes a directory entry specified by + zip_entry. The parameter + zip_entry must be a valid directory entry + opened by zip_entry_open. + + + This function has no return value. + + + See also zip_entry_open and + zip_entry_read. + + + + + + + zip_entry_compressedsize + Retrive the Compressed Size of a Zip Entry + + + Description + + + int zip_entry_compressedsize + resource zip_entry Returns the compressed size of the directory entry specified by - zzip_entry. The parameter - zzip_entry is a valid directory entry - returned by zzip_readdir. + zip_entry. The parameter + zip_entry is a valid directory entry + returned by zip_read. - See also zzip_opendir and - zzip_readdir. + See also zip_open and + zip_read. - + - zzip_entry_compressionmethod - Retrive the Compression Method of a ZZIP Entry + zip_entry_compressionmethod + Retrive the Compression Method of a Zip Entry Description - string zzip_entry_compressionmethod - resource zzip_entry + string zip_entry_compressionmethod + resource zip_entry Returns the compression method of the directory entry specified by - zzip_entry. The parameter - zzip_entry is a valid directory entry - returned by zzip_readdir. + zip_entry. The parameter + zip_entry is a valid directory entry + returned by zip_read. - See also zzip_opendir and - zzip_readdir. + See also zip_open and + zip_read. - + - zzip_entry_filesize - Retrive the Actual File Size of a ZZIP Entry + zip_entry_filesize + Retrive the Actual File Size of a Zip Entry Description - int zzip_entry_filesize - resource zzip_entry + int zip_entry_filesize + resource zip_entry Returns the actual size of the directory entry specified by - zzip_entry. The parameter - zzip_entry is a valid directory entry - returned by zzip_readdir. + zip_entry. The parameter + zip_entry is a valid directory entry + returned by zip_read. - See also zzip_opendir and - zzip_readdir. + See also zip_open and + zip_read. - + - zzip_entry_name - Retrive the Name of a ZZIP Entry + zip_entry_name + Retrive the Name of a Zip Entry Description - string zzip_entry_name - resource zzip_entry + string zip_entry_name + resource zip_entry Returns the name of the directory entry specified by - zzip_entry. The parameter - zzip_entry is a valid directory entry - returned by zzip_readdir. + zip_entry. The parameter + zip_entry is a valid directory entry + returned by zip_read. - See also zzip_opendir and - zzip_readdir. + See also zip_open and + zip_read. - + - zzip_opendir - Open a ZIP File Archive + zip_open + Open a Zip File Archive Description - resource zzip_opendir + resource zip_open string filename @@ -223,45 +222,45 @@ Returns a resource handle for later use with - zzip_readdir and - zzip_closedir or returns + zip_read and + zip_close or returns false if filename does not exist. - See also zzip_readdir and - zzip_closedir. + See also zip_read and + zip_close. - + - zzip_readdir - Reads Next Entry in a ZIP File Archive + zip_read + Reads Next Entry in a Zip File Archive Description - resource zzip_readdir - resource zzip + resource zip_read + resource zip Reads the next entry in a zip file archive. The parameter - zzip must be a zip archive previously - opened by zzip_opendir. + zip must be a zip archive previously + opened by zip_open. - Returns a directory entry resource for later use with - zzip_open, zzip_read and - the zzip_entry_... functions. + Returns a directory entry resource for later use with the + zip_entry_... functions. - See also zzip_opendir, - zzip_closedir, - zzip_open and zzip_read. + See also zip_open, + zip_close, + zip_entry_open and + zip_entry_read.