Home
last modified time | relevance | path

Searched refs:complevel (Results 1 – 2 of 2) sorted by relevance

/dokuwiki/vendor/splitbrain/php-archive/src/
H A DZip.php26 protected $complevel = 9; variable in splitbrain\\PHPArchive\\Zip
45 $this->complevel = $level;
331 (bool) $this->complevel
337 $deflate_context = deflate_init(ZLIB_ENCODING_DEFLATE, ['level' => $this->complevel]);
344 if ($this->complevel) {
374 $csize = $this->complevel ? $csize : $size;
391 (bool) $this->complevel
419 if ($this->complevel) {
420 $data = gzcompress($data, $this->complevel);
435 (bool) $this->complevel
[all...]
H A DTar.php21 protected $complevel = 9; variable in splitbrain\\PHPArchive\\Tar
41 $this->complevel = $level;
43 if($type == Archive::COMPRESS_NONE) $this->complevel = 0;
59 $this->setCompression($this->complevel, $this->filetype($file));
242 $this->setCompression($this->complevel, $this->filetype($file));
246 $this->fh = @gzopen($this->file, 'wb'.$this->complevel);
404 return gzencode($this->memory, $this->complevel);
425 $this->setCompression($this->complevel, $this->filetype($file));