php-src/ext/zip/tests/utils.inc

9 lines
162 B
PHP
Raw Normal View History

<?php
/* $Id$ */
function dump_entries_name($z) {
for($i=0; $i<$z->numFiles; $i++) {
$sb = $z->statIndex($i);
echo $i . ' ' . $sb['name'] . "\n";
}
}