php ZipArchive count number of files inside archiv

2019-09-24 08:56发布

问题:

I have this code:

$za = new ZipArchive();
$za->open($downloadlink);
echo "Number of files inside Zip = Unknown";
            for( $i = 0; $i < $za->numFiles; $i++ ){
                $stat = $za->statIndex( $i );
                $tounes = array( basename( $stat['name'] ) . PHP_EOL );
                foreach($tounes as $toune) {
                echo $toune;
                }
            }

I want to display the number of files inside the archive before displaying the list. How can i do that ?

回答1:

You already have the answer in your for loop:

echo "Number of files inside Zip = ".$za->numFiles;

http://php.net/manual/en/class.ziparchive.php



标签: php count zip