/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/XMLWriter.php (3505B)
openMemory(); } else { // Create temporary filename if ($pTemporaryStorageFolder === null) { $pTemporaryStorageFolder = PHPExcel_Shared_File::sys_get_temp_dir(); } $this->tempFileName = @tempnam($pTemporaryStorageFolder, 'xml'); // Open storage if ($this->openUri($this->tempFileName) === false) { // Fallback to memory... $this->openMemory(); } } // Set default values if (DEBUGMODE_ENABLED) { $this->setIndent(true); } } /** * Destructor */ public function __destruct() { // Unlink temporary files if ($this->tempFileName != '') { @unlink($this->tempFileName); } } /** * Get written data * * @return $data */ public function getData() { if ($this->tempFileName == '') { return $this->outputMemory(true); } else { $this->flush(); return file_get_contents($this->tempFileName); } } /** * Fallback method for writeRaw, introduced in PHP 5.2 * * @param string $text * @return string */ public function writeRawData($text) { if (is_array($text)) { $text = implode("\n", $text); } if (method_exists($this, 'writeRaw')) { return $this->writeRaw(htmlspecialchars($text)); } return $this->text($text); } }