Searched refs:complevel (Results 1 – 3 of 3) sorted by relevance
| /plugin/upgrade/myvendor/splitbrain/php-archive/src/ |
| H A D | Zip.php | 26 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 D | Tar.php | 22 protected $complevel = 9; variable in splitbrain\\PHPArchive\\Tar 45 $this->complevel = $level; 47 if($type == Archive::COMPRESS_NONE) $this->complevel = 0; 63 $this->setCompression($this->complevel, $this->filetype($file)); 272 $this->setCompression($this->complevel, $this->filetype($file)); 276 $this->fh = @gzopen($this->file, 'wb'.$this->complevel); 448 return gzencode($this->memory, $this->complevel); 469 $this->setCompression($this->complevel, $this->filetype($file));
|
| /plugin/elwikiupgrade/ |
| D | VerboseTarLib.class.php | 208 * @param int $complevel 212 public function create($file = '', $comptype = self::COMPRESS_AUTO, $complevel = 9) { argument 224 $this->fh = @gzopen($this->file, 'wb'.$complevel); 349 public function getArchive($comptype = self::COMPRESS_AUTO, $complevel = 9) { argument 355 if($comptype === self::COMPRESS_GZIP) return gzcompress($this->memory, $complevel); 368 * @param int $complevel 371 public function save($file, $comptype = self::COMPRESS_AUTO, $complevel = 9) { argument 374 if(!file_put_contents($file, $this->getArchive($comptype, $complevel))) {
|