ZipArchive::count

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

ZipArchive::countCounts the number of files in the archive

Descrierea

public ZipArchive::count ( ) : int

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns the number of files in the archive.

add a note add a note

User Contributed Notes 2 notes

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