Home
last modified time | relevance | path

Searched refs:Archive (Results 1 – 4 of 4) sorted by last modified time

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DTar.php16 class Tar extends Archive
20 protected $comptype = Archive::COMPRESS_AUTO;
34 public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO)
42 if($level == 0) $this->comptype = Archive::COMPRESS_NONE;
43 if($type == Archive::COMPRESS_NONE) $this->complevel = 0;
63 if ($this->comptype === Archive::COMPRESS_GZIP) {
65 } elseif ($this->comptype === Archive::COMPRESS_BZIP) {
241 if ($this->comptype == Archive::COMPRESS_AUTO) {
245 if ($this->comptype === Archive::COMPRESS_GZIP) {
247 } elseif ($this->comptype === Archive
[all...]
H A DZip.php16 class Zip extends Archive
40 public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO)
312 throw new ArchiveIOException('Archive has been closed, files can no longer be added');
413 throw new ArchiveIOException('Archive has been closed, files can no longer be added');
509 * This implicitly calls close() on the Archive
H A DArchive.php5 abstract class Archive class
23 abstract public function setCompression($level = 9, $type = Archive::COMPRESS_AUTO);
109 * This implicitly calls close() on the Archive
/dokuwiki/vendor/splitbrain/php-archive/
H A DREADME.md55 $tar->setCompression(9, Archive::COMPRESS_BZIP);