public function Zip::getArchive

public Zip::getArchive()

Retrieves the zip engine itself.

In some cases it may be necessary to directly access the underlying ZipArchive object for implementation-specific logic. This is for advanced use only as it is not shared by other implementations of ArchiveInterface.

Return value

\ZipArchive The ZipArchive object used by this object.

File

core/lib/Drupal/Core/Archiver/Zip.php, line 89

Class

Zip
Defines a archiver implementation for .zip files.

Namespace

Drupal\Core\Archiver

Code

public function getArchive() {
  return $this->zip;
}

© 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::getArchive/8.1.x