2020-05-19 23:46:52 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Class SimpleXLSXGen
|
|
|
|
* Export data to MS Excel. PHP XLSX generator
|
|
|
|
* Author: sergey.shuchkin@gmail.com
|
|
|
|
*/
|
|
|
|
|
|
|
|
class SimpleXLSXGen {
|
|
|
|
|
2020-11-02 19:34:19 +03:00
|
|
|
public $curSheet;
|
2020-11-03 22:42:52 +03:00
|
|
|
protected $sheets;
|
|
|
|
protected $template;
|
|
|
|
protected $SI, $SI_KEYS;
|
2020-11-02 19:34:19 +03:00
|
|
|
|
2020-05-19 23:46:52 +03:00
|
|
|
public function __construct() {
|
2020-11-03 22:42:52 +03:00
|
|
|
$this->curSheet = -1;
|
|
|
|
$this->sheets = [ ['name' => 'Sheet1', 'rows' => [] ] ];
|
|
|
|
$this->SI = []; // sharedStrings index
|
|
|
|
$this->SI_KEYS = []; // & keys
|
2020-05-19 23:46:52 +03:00
|
|
|
$this->template = [
|
|
|
|
'[Content_Types].xml' => '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
|
|
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
|
|
|
|
<Override PartName="/_rels/.rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/>
|
|
|
|
<Override PartName="/docProps/app.xml" ContentType="application/vnd.openxmlformats-officedocument.extended-properties+xml"/>
|
|
|
|
<Override PartName="/docProps/core.xml" ContentType="application/vnd.openxmlformats-package.core-properties+xml"/>
|
|
|
|
<Override PartName="/xl/_rels/workbook.xml.rels" ContentType="application/vnd.openxmlformats-package.relationships+xml"/>
|
2020-11-02 19:34:19 +03:00
|
|
|
{SHEETS}
|
2020-05-19 23:46:52 +03:00
|
|
|
<Override PartName="/xl/sharedStrings.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sharedStrings+xml"/>
|
|
|
|
<Override PartName="/xl/styles.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml"/>
|
|
|
|
<Override PartName="/xl/workbook.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml"/>
|
|
|
|
</Types>',
|
|
|
|
'_rels/.rels' => '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
|
|
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
|
|
|
|
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" Target="xl/workbook.xml"/>
|
|
|
|
<Relationship Id="rId2" Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" Target="docProps/core.xml"/>
|
|
|
|
<Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" Target="docProps/app.xml"/>
|
|
|
|
</Relationships>',
|
|
|
|
'docProps/app.xml' => '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
|
|
<Properties xmlns="http://schemas.openxmlformats.org/officeDocument/2006/extended-properties">
|
|
|
|
<TotalTime>0</TotalTime>
|
|
|
|
<Application>'.__CLASS__.'</Application></Properties>',
|
|
|
|
'docProps/core.xml' => '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
|
|
<cp:coreProperties xmlns:cp="http://schemas.openxmlformats.org/package/2006/metadata/core-properties" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<dcterms:created xsi:type="dcterms:W3CDTF">{DATE}</dcterms:created>
|
|
|
|
<dc:language>en-US</dc:language>
|
|
|
|
<dcterms:modified xsi:type="dcterms:W3CDTF">{DATE}</dcterms:modified>
|
|
|
|
<cp:revision>1</cp:revision>
|
|
|
|
</cp:coreProperties>',
|
|
|
|
'xl/_rels/workbook.xml.rels' => '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
|
|
<Relationships xmlns="http://schemas.openxmlformats.org/package/2006/relationships">
|
|
|
|
<Relationship Id="rId1" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" Target="styles.xml"/>
|
2020-11-02 19:34:19 +03:00
|
|
|
{SHEETS}',
|
2020-05-19 23:46:52 +03:00
|
|
|
'xl/worksheets/sheet1.xml' => '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
|
|
<worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"><dimension ref="{REF}"/><cols>{COLS}</cols><sheetData>{ROWS}</sheetData></worksheet>',
|
|
|
|
'xl/sharedStrings.xml' => '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
|
|
<sst xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" count="{CNT}" uniqueCount="{CNT}">{STRINGS}</sst>',
|
|
|
|
'xl/styles.xml' => '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
|
|
<styleSheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
|
2020-05-20 20:06:25 +03:00
|
|
|
<fonts count="2"><font><name val="Calibri"/><family val="2"/></font><font><name val="Calibri"/><family val="2"/><b/></font></fonts>
|
2020-05-19 23:46:52 +03:00
|
|
|
<fills count="1"><fill><patternFill patternType="none"/></fill></fills>
|
2020-05-20 20:06:25 +03:00
|
|
|
<borders count="1"><border><left/><right/><top/><bottom/><diagonal/></border></borders>
|
2020-05-19 23:46:52 +03:00
|
|
|
<cellStyleXfs count="1"><xf numFmtId="0" fontId="0" fillId="0" borderId="0" /></cellStyleXfs>
|
|
|
|
<cellXfs count="6">
|
|
|
|
<xf numFmtId="0" fontId="0" fillId="0" borderId="0" xfId="0"/>
|
2020-08-23 12:07:29 +03:00
|
|
|
<xf numFmtId="1" fontId="0" fillId="0" borderId="0" xfId="0" applyNumberFormat="1"/>
|
|
|
|
<xf numFmtId="9" fontId="0" fillId="0" borderId="0" xfId="0" applyNumberFormat="1"/>
|
|
|
|
<xf numFmtId="10" fontId="0" fillId="0" borderId="0" xfId="0" applyNumberFormat="1"/>
|
|
|
|
<xf numFmtId="14" fontId="0" fillId="0" borderId="0" xfId="0" applyNumberFormat="1"/>
|
|
|
|
<xf numFmtId="20" fontId="0" fillId="0" borderId="0" xfId="0" applyNumberFormat="1"/>
|
|
|
|
<xf numFmtId="22" fontId="0" fillId="0" borderId="0" xfId="0" applyNumberFormat="1"/>
|
|
|
|
<xf numFmtId="0" fontId="0" fillId="0" borderId="0" xfId="0" applyNumberFormat="1" applyAlignment="1"><alignment horizontal="right"/></xf>
|
2020-05-19 23:46:52 +03:00
|
|
|
</cellXfs>
|
|
|
|
<cellStyles count="1"><cellStyle name="Normal" xfId="0" builtinId="0"/></cellStyles>
|
|
|
|
</styleSheet>',
|
|
|
|
'xl/workbook.xml' => '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
|
|
<workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships">
|
2020-11-02 19:34:19 +03:00
|
|
|
<fileVersion appName="'.__CLASS__.'"/><sheets>
|
|
|
|
{SHEETS}
|
|
|
|
</sheets></workbook>'
|
2020-05-19 23:46:52 +03:00
|
|
|
];
|
|
|
|
// <col min="1" max="1" width="22.1796875" bestFit="1" customWidth="1"/>
|
|
|
|
// <row r="1" spans="1:2" x14ac:dyDescent="0.35"><c r="A1" t="s"><v>0</v></c><c r="B1"><v>100</v></c></row><row r="2" spans="1:2" x14ac:dyDescent="0.35"><c r="A2" t="s"><v>1</v></c><c r="B2"><v>200</v></c></row>
|
|
|
|
// <si><t>Простой шаблон</t></si><si><t>Будем делать генератор</t></si>
|
|
|
|
}
|
2020-11-03 22:42:52 +03:00
|
|
|
public static function fromArray( array $rows, $sheetName = null ) {
|
|
|
|
$xlsx = new static();
|
|
|
|
return $xlsx->addSheet( $rows, $sheetName );
|
2020-11-02 19:34:19 +03:00
|
|
|
}
|
|
|
|
|
2020-11-03 22:42:52 +03:00
|
|
|
public function addSheet( array $rows, $name = null ) {
|
|
|
|
$this->curSheet++;
|
|
|
|
|
|
|
|
$this->sheets[$this->curSheet] = ['name' => $name ?: 'Sheet'.($this->curSheet+1)];
|
2020-11-02 19:34:19 +03:00
|
|
|
|
2020-05-19 23:46:52 +03:00
|
|
|
if ( is_array( $rows ) && isset( $rows[0] ) && is_array($rows[0]) ) {
|
2020-11-03 22:42:52 +03:00
|
|
|
$this->sheets[$this->curSheet]['rows'] = $rows;
|
2020-05-19 23:46:52 +03:00
|
|
|
} else {
|
2020-11-03 22:42:52 +03:00
|
|
|
$this->sheets[$this->curSheet]['rows'] = [];
|
2020-05-19 23:46:52 +03:00
|
|
|
}
|
2020-11-03 22:42:52 +03:00
|
|
|
return $this;
|
2020-05-19 23:46:52 +03:00
|
|
|
}
|
2020-11-02 19:34:19 +03:00
|
|
|
|
2020-05-19 23:46:52 +03:00
|
|
|
public function __toString() {
|
|
|
|
$fh = fopen( 'php://memory', 'wb' );
|
|
|
|
if ( ! $fh ) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2020-11-03 22:42:52 +03:00
|
|
|
if ( ! $this->_write( $fh ) ) {
|
2020-05-19 23:46:52 +03:00
|
|
|
fclose( $fh );
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
$size = ftell( $fh );
|
|
|
|
fseek( $fh, 0);
|
|
|
|
|
|
|
|
return (string) fread( $fh, $size );
|
|
|
|
}
|
2020-11-02 19:34:19 +03:00
|
|
|
|
2020-05-19 23:46:52 +03:00
|
|
|
public function saveAs( $filename ) {
|
|
|
|
$fh = fopen( $filename, 'wb' );
|
|
|
|
if (!$fh) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-11-03 22:42:52 +03:00
|
|
|
if ( !$this->_write($fh) ) {
|
2020-05-19 23:46:52 +03:00
|
|
|
fclose($fh);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
fclose($fh);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2020-11-02 19:34:19 +03:00
|
|
|
|
2020-05-19 23:46:52 +03:00
|
|
|
public function download() {
|
2020-07-16 00:16:48 +03:00
|
|
|
return $this->downloadAs( gmdate('YmdHi') . '.xlsx' );
|
2020-05-19 23:46:52 +03:00
|
|
|
}
|
2020-11-02 19:34:19 +03:00
|
|
|
|
2020-05-19 23:46:52 +03:00
|
|
|
public function downloadAs( $filename ) {
|
|
|
|
$fh = fopen('php://memory','wb');
|
|
|
|
if (!$fh) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-11-03 22:42:52 +03:00
|
|
|
if ( !$this->_write( $fh )) {
|
2020-05-19 23:46:52 +03:00
|
|
|
fclose( $fh );
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$size = ftell($fh);
|
|
|
|
|
|
|
|
header('Content-type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
|
|
|
|
header('Content-Disposition: attachment; filename="'.$filename.'"');
|
|
|
|
header('Last-Modified: ' . gmdate('D, d M Y H:i:s \G\M\T' , time() ));
|
|
|
|
header('Content-Length: '.$size);
|
|
|
|
|
|
|
|
while( ob_get_level() ) {
|
|
|
|
ob_end_clean();
|
|
|
|
}
|
|
|
|
fseek($fh,0);
|
|
|
|
fpassthru( $fh );
|
|
|
|
|
|
|
|
fclose($fh);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-11-03 22:42:52 +03:00
|
|
|
protected function _write( $fh ) {
|
|
|
|
|
|
|
|
|
|
|
|
$dirSignatureE= "\x50\x4b\x05\x06"; // end of central dir signature
|
|
|
|
$zipComments = 'Generated by '.__CLASS__.' PHP class, thanks sergey.shuchkin@gmail.com';
|
|
|
|
|
|
|
|
if (!$fh) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$cdrec = ''; // central directory content
|
|
|
|
$entries= 0; // number of zipped files
|
|
|
|
$cnt_sheets = count( $this->sheets );
|
|
|
|
|
|
|
|
foreach ($this->template as $cfilename => $template ) {
|
|
|
|
if ( $cfilename === '[Content_Types].xml' ) {
|
|
|
|
$s = '';
|
|
|
|
for ( $i = 0; $i < $cnt_sheets; $i++) {
|
|
|
|
$s .= '<Override PartName="/xl/worksheets/sheet'.($i+1).
|
|
|
|
'.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/>';
|
|
|
|
}
|
|
|
|
$template = str_replace('{SHEETS}', $s, $template);
|
|
|
|
$this->_writeEntry($fh, $cdrec, $cfilename, $template);
|
|
|
|
$entries++;
|
|
|
|
}
|
|
|
|
elseif ( $cfilename === 'xl/_rels/workbook.xml.rels' ) {
|
|
|
|
$s = '';
|
|
|
|
for ( $i = 0; $i < $cnt_sheets; $i++) {
|
|
|
|
$s .= '<Relationship Id="rId'.($i+2).'" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet"'.
|
|
|
|
' Target="worksheets/sheet'.($i+1).".xml\"/>\n";
|
|
|
|
}
|
|
|
|
$s .= '<Relationship Id="rId'.($i+2).'" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings" Target="sharedStrings.xml"/></Relationships>';
|
|
|
|
$template = str_replace('{SHEETS}', $s, $template);
|
|
|
|
$this->_writeEntry($fh, $cdrec, $cfilename, $template);
|
|
|
|
$entries++;
|
|
|
|
}
|
|
|
|
elseif ( $cfilename === 'xl/workbook.xml' ) {
|
|
|
|
$s = '';
|
|
|
|
foreach ( $this->sheets as $k => $v ) {
|
|
|
|
$s .= '<sheet name="' . $v['name'] . '" sheetId="' . ( $k + 1) . '" state="visible" r:id="rId' . ( $k + 2) . '"/>';
|
|
|
|
}
|
|
|
|
$template = str_replace('{SHEETS}', $s, $template);
|
|
|
|
$this->_writeEntry($fh, $cdrec, $cfilename, $template);
|
|
|
|
$entries++;
|
|
|
|
}
|
|
|
|
elseif ( $cfilename === 'docProps/core.xml' ) {
|
|
|
|
$template = str_replace('{DATE}', gmdate('Y-m-d\TH:i:s\Z'), $template);
|
|
|
|
$this->_writeEntry($fh, $cdrec, $cfilename, $template);
|
|
|
|
$entries++;
|
|
|
|
} elseif ( $cfilename === 'xl/sharedStrings.xml' ) {
|
|
|
|
if (!count($this->SI)) {
|
|
|
|
$this->SI[] = 'No Data';
|
|
|
|
}
|
|
|
|
$si_cnt = count($this->SI);
|
|
|
|
$this->SI = '<si><t>'.implode("</t></si>\r\n<si><t>", $this->SI).'</t></si>';
|
|
|
|
$template = str_replace(['{CNT}', '{STRINGS}'], [ $si_cnt, $this->SI ], $template );
|
|
|
|
$this->_writeEntry($fh, $cdrec, $cfilename, $template);
|
|
|
|
$entries++;
|
|
|
|
} elseif ( $cfilename === 'xl/worksheets/sheet1.xml' ) {
|
|
|
|
foreach ( $this->sheets as $k => $v ) {
|
|
|
|
$filename = 'xl/worksheets/sheet'.($k+1).'.xml';
|
2021-01-25 19:19:37 +03:00
|
|
|
$xml = $this->_sheetToXML($k, $template);
|
2020-11-03 22:42:52 +03:00
|
|
|
$this->_writeEntry($fh, $cdrec, $filename, $xml );
|
|
|
|
$entries++;
|
|
|
|
}
|
|
|
|
$xml = null;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$this->_writeEntry($fh, $cdrec, $cfilename, $template);
|
|
|
|
$entries++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$before_cd = ftell($fh);
|
|
|
|
fwrite($fh, $cdrec);
|
|
|
|
|
|
|
|
// end of central dir
|
|
|
|
fwrite($fh, $dirSignatureE);
|
|
|
|
fwrite($fh, pack('v', 0)); // number of this disk
|
|
|
|
fwrite($fh, pack('v', 0)); // number of the disk with the start of the central directory
|
|
|
|
fwrite($fh, pack('v', $entries)); // total # of entries "on this disk"
|
|
|
|
fwrite($fh, pack('v', $entries)); // total # of entries overall
|
|
|
|
fwrite($fh, pack('V', mb_strlen($cdrec,'8bit'))); // size of central dir
|
|
|
|
fwrite($fh, pack('V', $before_cd)); // offset to start of central dir
|
|
|
|
fwrite($fh, pack('v', mb_strlen($zipComments,'8bit'))); // .zip file comment length
|
|
|
|
fwrite($fh, $zipComments);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function _writeEntry($fh, &$cdrec, $cfilename, $data) {
|
2020-05-19 23:46:52 +03:00
|
|
|
$zipSignature = "\x50\x4b\x03\x04"; // local file header signature
|
|
|
|
$dirSignature = "\x50\x4b\x01\x02"; // central dir header signature
|
|
|
|
|
2020-11-02 19:34:19 +03:00
|
|
|
$e = [];
|
|
|
|
$e['uncsize'] = mb_strlen($data, '8bit');
|
|
|
|
|
|
|
|
// if data to compress is too small, just store it
|
|
|
|
if($e['uncsize'] < 256){
|
|
|
|
$e['comsize'] = $e['uncsize'];
|
|
|
|
$e['vneeded'] = 10;
|
|
|
|
$e['cmethod'] = 0;
|
|
|
|
$zdata = $data;
|
|
|
|
} else{ // otherwise, compress it
|
|
|
|
$zdata = gzcompress($data);
|
|
|
|
$zdata = substr(substr($zdata, 0, - 4 ), 2); // fix crc bug (thanks to Eric Mueller)
|
|
|
|
$e['comsize'] = mb_strlen($zdata, '8bit');
|
|
|
|
$e['vneeded'] = 10;
|
|
|
|
$e['cmethod'] = 8;
|
|
|
|
}
|
2020-05-19 23:46:52 +03:00
|
|
|
|
2020-11-02 19:34:19 +03:00
|
|
|
$e['bitflag'] = 0;
|
|
|
|
$e['crc_32'] = crc32($data);
|
|
|
|
|
|
|
|
// Convert date and time to DOS Format, and set then
|
|
|
|
$lastmod_timeS = str_pad(decbin(date('s')>=32?date('s')-32:date('s')), 5, '0', STR_PAD_LEFT);
|
|
|
|
$lastmod_timeM = str_pad(decbin(date('i')), 6, '0', STR_PAD_LEFT);
|
|
|
|
$lastmod_timeH = str_pad(decbin(date('H')), 5, '0', STR_PAD_LEFT);
|
|
|
|
$lastmod_dateD = str_pad(decbin(date('d')), 5, '0', STR_PAD_LEFT);
|
|
|
|
$lastmod_dateM = str_pad(decbin(date('m')), 4, '0', STR_PAD_LEFT);
|
|
|
|
$lastmod_dateY = str_pad(decbin(date('Y')-1980), 7, '0', STR_PAD_LEFT);
|
|
|
|
|
|
|
|
# echo "ModTime: $lastmod_timeS-$lastmod_timeM-$lastmod_timeH (".date("s H H").")\n";
|
|
|
|
# echo "ModDate: $lastmod_dateD-$lastmod_dateM-$lastmod_dateY (".date("d m Y").")\n";
|
|
|
|
$e['modtime'] = bindec("$lastmod_timeH$lastmod_timeM$lastmod_timeS");
|
|
|
|
$e['moddate'] = bindec("$lastmod_dateY$lastmod_dateM$lastmod_dateD");
|
|
|
|
|
|
|
|
$e['offset'] = ftell($fh);
|
|
|
|
|
|
|
|
fwrite($fh, $zipSignature);
|
|
|
|
fwrite($fh, pack('s', $e['vneeded'])); // version_needed
|
|
|
|
fwrite($fh, pack('s', $e['bitflag'])); // general_bit_flag
|
|
|
|
fwrite($fh, pack('s', $e['cmethod'])); // compression_method
|
|
|
|
fwrite($fh, pack('s', $e['modtime'])); // lastmod_time
|
|
|
|
fwrite($fh, pack('s', $e['moddate'])); // lastmod_date
|
|
|
|
fwrite($fh, pack('V', $e['crc_32'])); // crc-32
|
|
|
|
fwrite($fh, pack('I', $e['comsize'])); // compressed_size
|
|
|
|
fwrite($fh, pack('I', $e['uncsize'])); // uncompressed_size
|
|
|
|
fwrite($fh, pack('s', mb_strlen($cfilename, '8bit'))); // file_name_length
|
|
|
|
fwrite($fh, pack('s', 0)); // extra_field_length
|
|
|
|
fwrite($fh, $cfilename); // file_name
|
|
|
|
// ignoring extra_field
|
|
|
|
fwrite($fh, $zdata);
|
|
|
|
|
|
|
|
// Append it to central dir
|
|
|
|
$e['external_attributes'] = (substr($cfilename, -1) === '/'&&!$zdata)?16:32; // Directory or file name
|
|
|
|
$e['comments'] = '';
|
|
|
|
|
|
|
|
$cdrec .= $dirSignature;
|
|
|
|
$cdrec .= "\x0\x0"; // version made by
|
|
|
|
$cdrec .= pack('v', $e['vneeded']); // version needed to extract
|
|
|
|
$cdrec .= "\x0\x0"; // general bit flag
|
|
|
|
$cdrec .= pack('v', $e['cmethod']); // compression method
|
|
|
|
$cdrec .= pack('v', $e['modtime']); // lastmod time
|
|
|
|
$cdrec .= pack('v', $e['moddate']); // lastmod date
|
|
|
|
$cdrec .= pack('V', $e['crc_32']); // crc32
|
|
|
|
$cdrec .= pack('V', $e['comsize']); // compressed filesize
|
|
|
|
$cdrec .= pack('V', $e['uncsize']); // uncompressed filesize
|
|
|
|
$cdrec .= pack('v', mb_strlen($cfilename,'8bit')); // file name length
|
|
|
|
$cdrec .= pack('v', 0); // extra field length
|
|
|
|
$cdrec .= pack('v', mb_strlen($e['comments'],'8bit')); // file comment length
|
|
|
|
$cdrec .= pack('v', 0); // disk number start
|
|
|
|
$cdrec .= pack('v', 0); // internal file attributes
|
|
|
|
$cdrec .= pack('V', $e['external_attributes']); // internal file attributes
|
|
|
|
$cdrec .= pack('V', $e['offset']); // relative offset of local header
|
|
|
|
$cdrec .= $cfilename;
|
|
|
|
$cdrec .= $e['comments'];
|
|
|
|
}
|
2020-05-19 23:46:52 +03:00
|
|
|
|
2021-01-25 19:19:37 +03:00
|
|
|
protected function _sheetToXML($idx, $template) {
|
|
|
|
// locale floats fr_FR 1.234,56 -> 1234.56
|
2021-01-25 19:43:37 +03:00
|
|
|
$_loc = setlocale(LC_NUMERIC, 0);
|
2021-01-25 19:19:37 +03:00
|
|
|
setlocale(LC_NUMERIC,'C');
|
2020-05-19 23:46:52 +03:00
|
|
|
$COLS = [];
|
|
|
|
$ROWS = [];
|
2021-01-25 19:19:37 +03:00
|
|
|
if ( count($this->sheets[$idx]['rows']) ) {
|
2020-05-19 23:46:52 +03:00
|
|
|
$CUR_ROW = 0;
|
|
|
|
$COL = [];
|
2021-01-25 19:19:37 +03:00
|
|
|
foreach( $this->sheets[$idx]['rows'] as $r ) {
|
2020-05-19 23:46:52 +03:00
|
|
|
$CUR_ROW++;
|
|
|
|
$row = '<row r="'.$CUR_ROW.'">';
|
|
|
|
$CUR_COL = 0;
|
2020-05-20 20:06:25 +03:00
|
|
|
foreach( $r as $v ) {
|
2020-05-19 23:46:52 +03:00
|
|
|
$CUR_COL++;
|
|
|
|
if ( !isset($COL[ $CUR_COL ])) {
|
|
|
|
$COL[ $CUR_COL ] = 0;
|
|
|
|
}
|
|
|
|
if ( $v === null || $v === '' ) {
|
|
|
|
continue;
|
|
|
|
}
|
2020-08-23 12:07:29 +03:00
|
|
|
$vl = mb_strlen( (string) $v );
|
|
|
|
|
|
|
|
$COL[ $CUR_COL ] = max( $vl, $COL[ $CUR_COL ] );
|
2020-05-19 23:46:52 +03:00
|
|
|
|
2020-05-31 05:35:35 +03:00
|
|
|
$cname = $this->num2name($CUR_COL) . $CUR_ROW;
|
2020-05-19 23:46:52 +03:00
|
|
|
|
|
|
|
$ct = $cs = null;
|
|
|
|
|
|
|
|
if ( is_string($v) ) {
|
|
|
|
|
2020-08-23 12:07:29 +03:00
|
|
|
if ( $v === '0' || preg_match( '/^[-+]?[1-9]\d{0,14}$/', $v ) ) { // Integer as General
|
|
|
|
$cv = ltrim( $v, '+' );
|
|
|
|
if ( $vl > 10 ) {
|
|
|
|
$cs = 1; // [1] 0
|
|
|
|
}
|
2020-08-22 10:54:34 +03:00
|
|
|
} elseif ( preg_match('/^[-+]?(0|[1-9]\d*)\.\d+$/', $v ) ) {
|
2020-05-19 23:46:52 +03:00
|
|
|
$cv = ltrim($v,'+');
|
|
|
|
} elseif ( preg_match('/^([-+]?\d+)%$/', $v, $m) ) {
|
|
|
|
$cv = round( $m[1] / 100, 2);
|
2020-08-23 12:07:29 +03:00
|
|
|
$cs = 2; // [9] 0%
|
2020-08-21 18:57:02 +03:00
|
|
|
} elseif ( preg_match('/^([-+]\d+\.\d+)%$/', $v, $m) ) {
|
2020-05-19 23:46:52 +03:00
|
|
|
$cv = round( $m[1] / 100, 4 );
|
2020-08-23 12:07:29 +03:00
|
|
|
$cs = 3; // [10] 0.00%
|
2020-05-19 23:46:52 +03:00
|
|
|
} elseif ( preg_match('/^(\d\d\d\d)-(\d\d)-(\d\d)$/', $v, $m ) ){
|
2020-05-31 05:35:35 +03:00
|
|
|
$cv = $this->date2excel($m[1],$m[2],$m[3]);
|
2020-08-23 12:07:29 +03:00
|
|
|
$cs = 4; // [14] mm-dd-yy
|
2020-11-02 19:34:19 +03:00
|
|
|
} elseif ( preg_match('/^(\d\d)\/(\d\d)\/(\d\d\d\d)$/', $v, $m ) ){
|
|
|
|
$cv = $this->date2excel($m[3],$m[2],$m[1]);
|
|
|
|
$cs = 4; // [14] mm-dd-yy
|
2020-05-19 23:46:52 +03:00
|
|
|
} elseif ( preg_match('/^(\d\d):(\d\d):(\d\d)$/', $v, $m ) ){
|
2020-05-31 05:35:35 +03:00
|
|
|
$cv = $this->date2excel(0,0,0,$m[1],$m[2],$m[3]);
|
2020-08-23 12:07:29 +03:00
|
|
|
$cs = 5; // [14] mm-dd-yy
|
2020-05-20 20:36:47 +03:00
|
|
|
} elseif ( preg_match('/^(\d\d\d\d)-(\d\d)-(\d\d) (\d\d):(\d\d):(\d\d)$/', $v, $m ) ) {
|
2020-05-31 05:35:35 +03:00
|
|
|
$cv = $this->date2excel( $m[1], $m[2], $m[3], $m[4], $m[5], $m[6] );
|
2020-08-23 12:07:29 +03:00
|
|
|
$cs = 6; // [22] m/d/yy h:mm
|
2020-11-02 19:34:19 +03:00
|
|
|
} elseif ( preg_match('/^(\d\d)\/(\d\d)\/(\d\d\d\d) (\d\d):(\d\d):(\d\d)$/', $v, $m ) ) {
|
|
|
|
$cv = $this->date2excel( $m[3], $m[2], $m[1], $m[4], $m[5], $m[6] );
|
|
|
|
$cs = 6; // [22] m/d/yy h:mm
|
2020-05-20 20:36:47 +03:00
|
|
|
} elseif ( mb_strlen( $v ) > 160 ) {
|
|
|
|
$ct = 'inlineStr';
|
2020-08-27 00:15:14 +03:00
|
|
|
$cv = str_replace(['&','<','>',"\x03"],['&','<','>',''], $v);
|
2020-05-19 23:46:52 +03:00
|
|
|
} else {
|
2020-08-23 12:07:29 +03:00
|
|
|
if ( preg_match('/^[0-9+-.]+$/', $v ) ) { // Long ?
|
|
|
|
$cs = 7; // Align Right
|
|
|
|
}
|
2020-10-04 13:08:12 +03:00
|
|
|
$v = ltrim($v,"\0"); // disabled type detection
|
2020-05-19 23:46:52 +03:00
|
|
|
$ct = 's'; // shared string
|
2020-08-27 00:15:14 +03:00
|
|
|
$v = str_replace(['&','<','>',"\x03"],['&','<','>',''], $v);
|
2020-08-20 01:41:08 +03:00
|
|
|
$cv = false;
|
2020-08-22 10:54:34 +03:00
|
|
|
$skey = '~'.$v;
|
2020-11-02 19:34:19 +03:00
|
|
|
if ( isset($this->SI_KEYS[ $skey ]) ) {
|
|
|
|
$cv = $this->SI_KEYS[ $skey ];
|
2020-08-20 01:41:08 +03:00
|
|
|
}
|
|
|
|
|
2020-05-19 23:46:52 +03:00
|
|
|
if ( $cv === false ) {
|
2020-11-02 19:34:19 +03:00
|
|
|
$this->SI[] = $v;
|
|
|
|
$cv = count( $this->SI ) - 1;
|
|
|
|
$this->SI_KEYS[$skey] = $cv;
|
2020-05-19 23:46:52 +03:00
|
|
|
}
|
|
|
|
}
|
2021-01-25 19:19:37 +03:00
|
|
|
} elseif ( is_int( $v ) ) {
|
|
|
|
$cv = $v;
|
|
|
|
} elseif ( is_float( $v ) ) {
|
2020-05-19 23:46:52 +03:00
|
|
|
$cv = $v;
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-05-20 20:36:47 +03:00
|
|
|
$row .= '<c r="' . $cname . '"'.($ct ? ' t="'.$ct.'"' : '').($cs ? ' s="'.$cs.'"' : '').'>'
|
2020-11-03 22:42:52 +03:00
|
|
|
.($ct === 'inlineStr' ? '<is><t>'.$cv.'</t></is>' : '<v>' . $cv . '</v>')."</c>\r\n";
|
2020-05-19 23:46:52 +03:00
|
|
|
}
|
|
|
|
$ROWS[] = $row . "</row>\r\n";
|
|
|
|
}
|
|
|
|
foreach ( $COL as $k => $max ) {
|
2020-05-20 20:06:25 +03:00
|
|
|
$COLS[] = '<col min="'.$k.'" max="'.$k.'" width="'.min( $max+1, 60).'" />';
|
2020-05-19 23:46:52 +03:00
|
|
|
}
|
2020-05-31 05:35:35 +03:00
|
|
|
$REF = 'A1:'.$this->num2name(count($COLS)) . $CUR_ROW;
|
2020-05-19 23:46:52 +03:00
|
|
|
} else {
|
2020-05-20 20:06:25 +03:00
|
|
|
$COLS[] = '<col min="1" max="1" bestFit="1" />';
|
2020-05-19 23:46:52 +03:00
|
|
|
$ROWS[] = '<row r="1"><c r="A1" t="s"><v>0</v></c></row>';
|
|
|
|
$REF = 'A1:A1';
|
|
|
|
}
|
2021-01-25 19:19:37 +03:00
|
|
|
//restore locale
|
|
|
|
setlocale(LC_NUMERIC, $_loc);
|
|
|
|
|
2020-11-02 19:34:19 +03:00
|
|
|
return str_replace(['{REF}','{COLS}','{ROWS}'],
|
2020-11-03 22:42:52 +03:00
|
|
|
[ $REF, implode("\r\n", $COLS), implode("\r\n",$ROWS) ],
|
|
|
|
$template );
|
2020-05-19 23:46:52 +03:00
|
|
|
}
|
2020-11-02 19:34:19 +03:00
|
|
|
|
2020-05-31 05:35:35 +03:00
|
|
|
public function num2name($num) {
|
|
|
|
$numeric = ($num - 1) % 26;
|
2020-05-19 23:46:52 +03:00
|
|
|
$letter = chr( 65 + $numeric );
|
|
|
|
$num2 = (int) ( ($num-1) / 26 );
|
|
|
|
if ( $num2 > 0 ) {
|
2020-05-31 05:35:35 +03:00
|
|
|
return $this->num2name( $num2 ) . $letter;
|
2020-05-19 23:46:52 +03:00
|
|
|
}
|
|
|
|
return $letter;
|
|
|
|
}
|
2020-11-02 19:34:19 +03:00
|
|
|
|
2020-05-31 05:35:35 +03:00
|
|
|
public function date2excel($year, $month, $day, $hours=0, $minutes=0, $seconds=0) {
|
2020-07-29 18:50:38 +03:00
|
|
|
$excelTime = (($hours * 3600) + ($minutes * 60) + $seconds) / 86400;
|
|
|
|
|
|
|
|
if ( $year === 0 ) {
|
|
|
|
return $excelTime;
|
|
|
|
}
|
|
|
|
|
2020-05-19 23:46:52 +03:00
|
|
|
// self::CALENDAR_WINDOWS_1900
|
|
|
|
$excel1900isLeapYear = True;
|
|
|
|
if (((int)$year === 1900) && ($month <= 2)) { $excel1900isLeapYear = False; }
|
|
|
|
$myExcelBaseDate = 2415020;
|
|
|
|
|
|
|
|
// Julian base date Adjustment
|
|
|
|
if ($month > 2) {
|
|
|
|
$month -= 3;
|
|
|
|
} else {
|
|
|
|
$month += 9;
|
|
|
|
--$year;
|
|
|
|
}
|
|
|
|
// Calculate the Julian Date, then subtract the Excel base date (JD 2415020 = 31-Dec-1899 Giving Excel Date of 0)
|
|
|
|
$century = substr($year,0,2);
|
|
|
|
$decade = substr($year,2,2);
|
|
|
|
$excelDate = floor((146097 * $century) / 4) + floor((1461 * $decade) / 4) + floor((153 * $month + 2) / 5) + $day + 1721119 - $myExcelBaseDate + $excel1900isLeapYear;
|
|
|
|
|
2020-07-29 18:50:38 +03:00
|
|
|
return (float) $excelDate + $excelTime;
|
|
|
|
}
|
2020-07-16 00:16:48 +03:00
|
|
|
}
|