|
ZipArchive::statIndexGet the details of an entry defined by its index. Description
array ZipArchive::statIndex
( int
$index
[, int $flags
] )The function obtains information about the entry defined by its index. Parameters
Return Values
Returns an array containing the entry details or ExamplesExample #1 Dump the stat info of an entry
<?phpThe above example will output something similar to:
Array
(
[name] => foobar/baz
[index] => 3
[crc] => 499465816
[size] => 27
[mtime] => 1123164748
[comp_size] => 24
[comp_method] => 8
)
|