PHP » GoLang |
login |
register |
about
|
GoLang ZipArchive::statIndex
request it (244)
GoLang replacement for PHP's ZipArchive::statIndex
[edit | history]
ZipArchive::statIndex(PHP 5 >= 5.2.0, PHP 7, PECL zip >= 1.1.0) ZipArchive::statIndex — Get 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
<?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 ) |
more
Recently updated
more
Most requested
more
Last requests
|