php-src/ext/zip/tests/utils.inc
2006-10-02 14:17:42 +00:00

9 lines
162 B
PHP

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