radarrplexorganizrnginxsonarrdashboardserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpc
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
759 B
31 lines
759 B
7 years ago
|
---
|
||
|
layout: default
|
||
|
permalink: /adapter/zip-archive/
|
||
|
title: ZipArchive Adapter
|
||
|
---
|
||
|
|
||
|
# ZipArchive Adapter
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
~~~ bash
|
||
|
composer require league/flysystem-ziparchive
|
||
|
~~~
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
~~~ php
|
||
|
use League\Flysystem\Filesystem;
|
||
|
use League\Flysystem\ZipArchive\ZipArchiveAdapter;
|
||
|
|
||
|
$filesystem = new Filesystem(new ZipArchiveAdapter(__DIR__.'/path/to/archive.zip'));
|
||
|
~~~
|
||
|
|
||
|
### Force Save
|
||
|
|
||
|
When creating a new zip file it will only be saved at the end of the PHP request because the ZipArchive library relies on an internal `__destruct` method to be called. You can force the saving of the zip file before the end of the request by calling the `close` method on the archive through the adapter.
|
||
|
|
||
|
~~~ php
|
||
|
$filesystem->getAdapter()->getArchive()->close();
|
||
|
~~~
|