ZipArchive::statIndex
インデックスを使用してエントリの詳細を取得する
説明
public arrayfalse ZipArchive::statIndex(int $index
, int $flags
= 0)
パラメータ
-
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
)