(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.1.0)
ZipArchive::statIndex — インデックスを使用してエントリの詳細を取得する
$index
[, int $flags
] )この関数は、インデックスを使用してエントリの詳細情報を取得します。
index
エントリのインデックス。
flags
ZipArchive::FL_UNCHANGED
を OR で連結すると、
アーカイブ内に最初に記録された際の情報を取得します。
変更内容は無視されます。
エントリの詳細を含む配列を返します。失敗した場合に FALSE
を返します。
例1 エントリの情報の出力
<?php
$zip = new ZipArchive;
$res = $zip->open('test.zip');
if ($res === TRUE) {
print_r($zip->statIndex(3));
$zip->close();
} else {
echo '失敗、コード:' . $res;
}
?>
上の例の出力は、 たとえば以下のようになります。
Array ( [name] => foobar/baz [index] => 3 [crc] => 499465816 [size] => 27 [mtime] => 1123164748 [comp_size] => 24 [comp_method] => 8 )