|
ZipArchive::statNameGet the details of an entry defined by its name. Description
array ZipArchive::statName
( string
$name
[, int $flags
] )The function obtains information about the entry defined by its name. Parameters
Return Values
Returns an array containing the entry details or ExamplesExample #1 Dump the stat info of an entry
<?php The 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 ) |