/var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/Shared
NameSizeModeActions
Escher/-0755rm
JAMA/-0755rm
OLE/-0755rm
PCLZip/-0755rm
trend/-0755rm
CodePage.php63910644editdlrm
Date.php156290644editdlrm
Drawing.php90230644editdlrm
Escher.php22200644editdlrm
Excel5.php130020644editdlrm
File.php60120644editdlrm
Font.php297280644editdlrm
OLE.php174780644editdlrm
OLERead.php112440644editdlrm
PasswordHasher.php24400644editdlrm
String.php279000644editdlrm
TimeZone.php48160644editdlrm
XMLWriter.php35050644editdlrm
ZipArchive.php49030644editdlrm
ZipStreamWrapper.php53260644editdlrm
Edit: /var/www/vhosts/bsbdokum.com.tr/httpdocs/app/Addition/PHPExcel/PHPExcel/Shared/ZipStreamWrapper.php (5326B)
archive = new ZipArchive(); $this->archive->open($url['host']); $this->fileNameInArchive = $url['fragment']; $this->position = 0; $this->data = $this->archive->getFromName($this->fileNameInArchive); return true; } /** * Implements support for fstat(). * * @return boolean */ public function statName() { return $this->fileNameInArchive; } /** * Implements support for fstat(). * * @return boolean */ public function url_stat() { return $this->statName($this->fileNameInArchive); } /** * Implements support for fstat(). * * @return boolean */ public function stream_stat() { return $this->archive->statName($this->fileNameInArchive); } /** * Implements support for fread(), fgets() etc. * * @param int $count maximum number of bytes to read * @return string */ public function stream_read($count) { $ret = substr($this->data, $this->position, $count); $this->position += strlen($ret); return $ret; } /** * Returns the position of the file pointer, i.e. its offset into the file * stream. Implements support for ftell(). * * @return int */ public function stream_tell() { return $this->position; } /** * EOF stream * * @return bool */ public function stream_eof() { return $this->position >= strlen($this->data); } /** * Seek stream * * @param int $offset byte offset * @param int $whence SEEK_SET, SEEK_CUR or SEEK_END * @return bool */ public function stream_seek($offset, $whence) { switch ($whence) { case SEEK_SET: if ($offset < strlen($this->data) && $offset >= 0) { $this->position = $offset; return true; } else { return false; } break; case SEEK_CUR: if ($offset >= 0) { $this->position += $offset; return true; } else { return false; } break; case SEEK_END: if (strlen($this->data) + $offset >= 0) { $this->position = strlen($this->data) + $offset; return true; } else { return false; } break; default: return false; } } }