parent root
PHP: ZipArchive::count - Manual

ZipArchive::count

(PHP 7 >= 7.2.0, PECL zip >= 1.15.0)

ZipArchive::countCounts the number of files in the achive

Description

public ZipArchive::count ( void ) : int

Parameters

This function has no parameters.

Return Values

Returns the number of files in the archive.

add a noteadd a note

User Contributed Notes 2 notes

up
10
ohcc at 163 dot com
1 year ago
ZipArchive::count() is introduced in PHP 7.2.
up
8
Ignacio C. E.
1 year ago
You can use $zip->numFiles if you are on PHP <7.2
To Top
parent root