mirror of
https://github.com/php/php-src.git
synced 2026-03-26 17:22:15 +01:00
9 lines
162 B
PHP
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";
|
|
}
|
|
}
|