public function Zip::listContents

public 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 a archiver implementation for .zip files.

Namespace

Drupal\Core\Archiver

Code

public function listContents() {
  $files = array();
  for ($i = 0; $i < $this->zip->numFiles; $i++) {
    $files[] = $this->zip->getNameIndex($i);
  }
  return $files;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Archiver!Zip.php/function/Zip::listContents/8.1.x