PHP8 ZipArchive::getFromIndex
(PHP 5 >= 5.2.0, PHP 7, PHP 8, PECL zip >= 1.1.0)
ZipArchive::getFromIndex — 使用其索引返回条目内容
说明
public ZipArchive::getFromIndex(int $index, int $len = 0, int $flags = 0): string|false
使用其索引返回条目内容。
参数
index
条目的索引
len
要从条目中读取的长度。如果 ,则 读取整个条目。
0
flags
用于打开存档的标志。以下值可能 被 ORed 到它。
ZipArchive::FL_UNCHANGED
ZipArchive::FL_COMPRESSED
返回值
返回 success 条目的内容 或者在失败时返回 false。
示例
示例 #1 获取文件内容
<?php
$zip = new ZipArchive;
if ($zip->open('test.zip') === TRUE) {
echo $zip->getFromIndex(2);
$zip->close();
} else {
echo 'failed';
}
?>
参见
- ZipArchive::getFromName() - 使用其名称返回条目内容