ZipArchive::getNameIndex
ZipArchive::getNameIndex
(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.5.0)
ZipArchive::getNameIndex - 使用其索引返回条目的名称
描述
string ZipArchive::getNameIndex ( int $index [, int $flags ] )
使用索引返回条目的名称。
参数
index
入口索引。
flags
如果标志设置为ZipArchive::FL_UNCHANGED
,则返回原始不变的名称。
返回值
成功返回名称或失败时返回FALSE
。
示例
Example #1 ZipArchive::getNameIndex() example
<?php
if ($zip->open('test.zip') == TRUE) {
for ($i = 0; $i < $zip->numFiles; $i++) {
$filename = $zip->getNameIndex($i
// ...
}
}
?>
← ZipArchive::getFromName
ZipArchive::getStatusString →