Searched refs:writebytes (Results 1 – 2 of 2) sorted by relevance
/dokuwiki/vendor/splitbrain/php-archive/src/ |
D | Zip.php | 325 $this->writebytes($this->makeLocalFileHeader( 362 $this->writebytes($c_block); 364 $this->writebytes($block); 429 $this->writebytes($this->makeLocalFileHeader( 441 $this->writebytes($data); 478 $this->writebytes($ctrldir); 481 $this->writebytes("\x50\x4b\x05\x06"); // end of central dir signature 482 $this->writebytes(pack('v', 0)); // number of this disk 483 … $this->writebytes(pack('v', 0)); // number of the disk with the start of the central directory 484 $this->writebytes(pack('v', [all …]
|
D | Tar.php | 337 $this->writebytes($data); 340 $this->writebytes(substr($data, 0, $passLen)); 342 $this->writebytes(pack("a512", substr($data, $passLen))); 381 $this->writebytes(substr($data, 0, $passLen)); 383 $this->writebytes(pack("a512", substr($data, $passLen, 512))); 411 $this->writebytes(pack("a512", "")); 412 $this->writebytes(pack("a512", "")); 503 protected function writebytes($data) function in splitbrain\\PHPArchive\\Tar 589 $this->writebytes(pack("a512", substr($name, $s, 512))); 617 $this->writebytes($data_first); [all …]
|