ZipArchive::statIndex
ZipArchive::statIndex
(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.1.0)
ZipArchive::statIndex - 获取由其索引定义的条目的详细信息。
描述
array ZipArchive::statIndex ( int $index [, int $flags ] )
该函数获取有关由其索引定义的条目的信息。
参数
index
入口索引
flags
ZipArchive::FL_UNCHANGED
可能会对其进行“或”操作以请求有关存档中原始文件的信息,而忽略所做的任何更改。
返回值
返回包含条目详细信息的数组或FALSE
失败时的数组。
例子
示例#1转储条目的统计信息
<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip'
if ($res === TRUE) {
print_r($zip->statIndex(3)
$zip->close(
} else {
echo 'failed, code:' . $res;
}
?>
上面的例子会输出类似于:
Array
(
[name] => foobar/baz
[index] => 3
[crc] => 499465816
[size] => 27
[mtime] => 1123164748
[comp_size] => 24
[comp_method] => 8
)
← ZipArchive::setPassword
ZipArchive::statName →