Codebase list phpggc / 9a88393 gadgetchains / PHPExcel / FD / 4 / gadgets.php
9a88393

Tree @9a88393 (Download .tar.gz)

gadgets.php @9a88393raw · history · blame

<?php

# https://github.com/PHPOffice/PHPExcel/blob/1.8.1/Classes/PHPExcel/Shared/XMLWriter.php
class PHPExcel_Shared_XMLWriter {
    private $_tempFileName  = '';

    public function __construct($filePath) {
        $this->_tempFileName = $filePath;
    }

    /*
    public function __destruct()
    {
        // Unlink temporary files
        if ($this->_tempFileName != '') {
            @unlink($this->_tempFileName);
        }
    }
    */
}