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 ?
You already have the answer in your
for
loop:http://php.net/manual/en/class.ziparchive.php