ZipArchive::getNameIndex Returns the name of an entry using its index &reftitle.description; stringZipArchive::getNameIndex intindex intflags Returns the name of an entry using its index. &reftitle.parameters; index Index of the entry. flags If flags is set to ZipArchive::FL_UNCHANGED, the original unchanged name is returned. &reftitle.returnvalues; Returns the name on success&return.falseforfailure;. &reftitle.examples; <function>ZipArchive::getNameIndex</function> example open('test.zip') == TRUE) { for ($i = 0; $i < $zip->numFiles; $i++) { $filename = $zip->getNameIndex($i); // ... } } ?> ]]>