public function Zip::listContents in Drupal 9
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/Archiver/Zip.php \Drupal\Core\Archiver\Zip::listContents()
Lists all files in the archive.
Return value
array An array of file names relative to the root of the archive.
Overrides ArchiverInterface::listContents
File
- core/
lib/ Drupal/ Core/ Archiver/ Zip.php, line 71
Class
- Zip
- Defines an archiver implementation for .zip files.
Namespace
Drupal\Core\ArchiverCode
public function listContents() {
$files = [];
for ($i = 0; $i < $this->zip->numFiles; $i++) {
$files[] = $this->zip
->getNameIndex($i);
}
return $files;
}