}
/* }}} */
-/* {{{ proto mixed open(string source [, int flags]) U
+/* {{{ proto mixed ZipArchive::open(string source [, int flags]) U
Create new zip using source uri for output, return TRUE on success or the error code */
static ZIPARCHIVE_METHOD(open)
{
}
/* }}} */
-/* {{{ proto bool close() U
+/* {{{ proto bool ZipArchive::close() U
close the zip archive */
static ZIPARCHIVE_METHOD(close)
{
}
/* }}} */
-/* {{{ proto bool createEmptyDir(string dirname) U
+/* {{{ proto bool ZipArchive::createEmptyDir(string dirname) U
Returns the index of the entry named filename in the archive */
static ZIPARCHIVE_METHOD(addEmptyDir)
{
}
/* }}} */
-/* {{{ proto bool addFile(string filepath[, string entryname[, int start [, int length]]]) U
+/* {{{ proto bool ZipArchive::addFile(string filepath[, string entryname[, int start [, int length]]]) U
Add a file in a Zip archive using its path and the name to use. */
static ZIPARCHIVE_METHOD(addFile)
{
}
/* }}} */
-/* {{{ proto bool addFromString(string name, string content) U
+/* {{{ proto bool ZipArchive::addFromString(string name, string content) U
Add a file using content and the entry name */
static ZIPARCHIVE_METHOD(addFromString)
{
}
/* }}} */
-/* {{{ proto array statName(string filename[, int flags]) U
+/* {{{ proto array ZipArchive::statName(string filename[, int flags]) U
Returns the information about a the zip entry filename */
static ZIPARCHIVE_METHOD(statName)
{
}
/* }}} */
-/* {{{ proto resource statIndex(int index[, int flags]) U
+/* {{{ proto resource ZipArchive::statIndex(int index[, int flags]) U
Returns the zip entry informations using its index */
static ZIPARCHIVE_METHOD(statIndex)
{
}
/* }}} */
-/* {{{ proto int locateName(string filename[, int flags]) U
+/* {{{ proto int ZipArchive::locateName(string filename[, int flags]) U
Returns the index of the entry named filename in the archive */
static ZIPARCHIVE_METHOD(locateName)
{
}
/* }}} */
-/* {{{ proto string getNameIndex(int index [, int flags]) U
+/* {{{ proto string ZipArchive::getNameIndex(int index [, int flags]) U
Returns the name of the file at position index */
static ZIPARCHIVE_METHOD(getNameIndex)
{
}
/* }}} */
-/* {{{ proto bool setArchiveComment(string name, string comment) U
+/* {{{ proto bool ZipArchive::setArchiveComment(string name, string comment) U
Set or remove (NULL/'') the comment of the archive */
static ZIPARCHIVE_METHOD(setArchiveComment)
{
}
/* }}} */
-/* {{{ proto string getArchiveComment() U
+/* {{{ proto string ZipArchive::getArchiveComment() U
Returns the comment of an entry using its index */
static ZIPARCHIVE_METHOD(getArchiveComment)
{
}
/* }}} */
-/* {{{ proto bool setCommentName(string name, string comment) U
+/* {{{ proto bool ZipArchive::setCommentName(string name, string comment) U
Set or remove (NULL/'') the comment of an entry using its Name */
static ZIPARCHIVE_METHOD(setCommentName)
{
}
/* }}} */
-/* {{{ proto bool setCommentIndex(int index, string comment) U
+/* {{{ proto bool ZipArchive::setCommentIndex(int index, string comment) U
Set or remove (NULL/'') the comment of an entry using its index */
static ZIPARCHIVE_METHOD(setCommentIndex)
{
}
/* }}} */
-/* {{{ proto string getCommentName(string name) U
+/* {{{ proto string ZipArchive::getCommentName(string name) U
Returns the comment of an entry using its name */
static ZIPARCHIVE_METHOD(getCommentName)
{
}
/* }}} */
-/* {{{ proto string getCommentIndex(int index) U
+/* {{{ proto string ZipArchive::getCommentIndex(int index) U
Returns the comment of an entry using its index */
static ZIPARCHIVE_METHOD(getCommentIndex)
{
}
/* }}} */
-/* {{{ proto bool deleteIndex(int index) U
+/* {{{ proto bool ZipArchive::deleteIndex(int index) U
Delete a file using its index */
static ZIPARCHIVE_METHOD(deleteIndex)
{
}
/* }}} */
-/* {{{ proto bool deleteName(string name) U
+/* {{{ proto bool ZipArchive::deleteName(string name) U
Delete a file using its index */
static ZIPARCHIVE_METHOD(deleteName)
{
}
/* }}} */
-/* {{{ proto bool renameIndex(int index, string new_name) U
+/* {{{ proto bool ZipArchive::renameIndex(int index, string new_name) U
Rename an entry selected by its index to new_name */
static ZIPARCHIVE_METHOD(renameIndex)
{
}
/* }}} */
-/* {{{ proto bool renameName(string name, string new_name) U
+/* {{{ proto bool ZipArchive::renameName(string name, string new_name) U
Rename an entry selected by its name to new_name */
static ZIPARCHIVE_METHOD(renameName)
{
}
/* }}} */
-/* {{{ proto bool unchangeIndex(int index) U
+/* {{{ proto bool ZipArchive::unchangeIndex(int index) U
Changes to the file at position index are reverted */
static ZIPARCHIVE_METHOD(unchangeIndex)
{
}
/* }}} */
-/* {{{ proto bool unchangeName(string name) U
+/* {{{ proto bool ZipArchive::unchangeName(string name) U
Changes to the file named 'name' are reverted */
static ZIPARCHIVE_METHOD(unchangeName)
{
}
/* }}} */
-/* {{{ proto bool unchangeAll() U
+/* {{{ proto bool ZipArchive::unchangeAll() U
All changes to files and global information in archive are reverted */
static ZIPARCHIVE_METHOD(unchangeAll)
{
}
/* }}} */
-/* {{{ proto bool unchangeAll() U
+/* {{{ proto bool ZipArchive::unchangeAll() U
Revert all global changes to the archive archive. For now, this only reverts archive comment changes. */
static ZIPARCHIVE_METHOD(unchangeArchive)
{
}
/* }}} */
-/* {{{ array bool extractTo(string pathto[, mixed files]) U
+/* {{{ proto bool ZipArchive::extractTo(string pathto[, mixed files]) U
Extract one or more file from a zip archive */
/* TODO:
* - allow index or array of indeces
}
/* }}} */
-/* {{{ proto string getFromName(string entryname[, int len [, int flags]]) U
+/* {{{ proto string ZipArchive::getFromName(string entryname[, int len [, int flags]]) U
get the contents of an entry using its name */
static ZIPARCHIVE_METHOD(getFromName)
{
}
/* }}} */
-/* {{{ proto string getFromIndex(string entryname[, int len [, int flags]]) U
+/* {{{ proto string ZipArchive::getFromIndex(string entryname[, int len [, int flags]]) U
get the contents of an entry using its index */
static ZIPARCHIVE_METHOD(getFromIndex)
{
}
/* }}} */
-/* {{{ proto resource getStream(string entryname) U
+/* {{{ proto resource ZipArchive::getStream(string entryname) U
get a stream for an entry using its name */
static ZIPARCHIVE_METHOD(getStream)
{