ZipArchive
在线手册:中文  英文

ZipArchive::getFromIndex

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

ZipArchive::getFromIndexReturns the entry contents using its index

说明

string ZipArchive::getFromIndex ( int $index [, int $length = 0 [, int $flags ]] )

Returns the entry contents using its index.

参数

index

Index of the entry

length

The length to be read from the entry. If 0, then the entire entry is read.

flags

The flags to use to open the archive. the following values may be ORed to it.

  • ZipArchive::FL_UNCHANGED

  • ZipArchive::FL_COMPRESSED

返回值

Returns the contents of the entry on success 或者在失败时返回 FALSE.

范例

Example #1 Get the file contents

<?php
$zip 
= new ZipArchive;
if (
$zip->open('test.zip') === TRUE) {
    echo 
$zip->getFromIndex(2);
    
$zip->close();
} else {
    echo 
'failed';
}
?>

参见


ZipArchive
在线手册:中文  英文

用户评论:

matt3k (2013-06-26 01:21:51)

Note, length is in characters and not bytes.

jana.vasseru (2007-08-17 04:26:40)

Note that getFromIndex returns false for directories.

易百教程