added multisheet support (keeping it compatible to the original version)

This commit is contained in:
Savino Rapillo 2020-11-02 17:34:19 +01:00
parent 0fc338d802
commit 3abb47b9b4
1 changed files with 200 additions and 115 deletions

View File

@ -7,10 +7,17 @@
class SimpleXLSXGen {
public $rows;
public $template;
public $curSheet;
private $sheets;
private $template;
private $SI, $SI_KEYS;
public function __construct() {
$this->rows = [];
$this->curSheet = 0;
$this->sheets[0]['rows'] = [];
$this->sheets[0]['Name'] = 'Sheet1';
$this->SI = []; // sharedStrings index & keys
$this->SI_KEYS = [];
$this->template = [
'[Content_Types].xml' => '<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
@ -18,12 +25,11 @@ class SimpleXLSXGen {
<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"/>
<Override PartName="/xl/worksheets/sheet1.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/>
{SHEETS}
<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>',
/* <Override PartName="/xl/theme/theme1.xml" ContentType="application/vnd.openxmlformats-officedocument.theme+xml"/> */
'_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"/>
@ -44,8 +50,7 @@ class SimpleXLSXGen {
'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"/>
<Relationship Id="rId2" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/worksheet" Target="worksheets/sheet1.xml"/>
<Relationship Id="rId3" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings" Target="sharedStrings.xml"/></Relationships>',
{SHEETS}',
'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"?>
@ -70,26 +75,45 @@ class SimpleXLSXGen {
</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">
<fileVersion appName="'.__CLASS__.'"/>
<sheets><sheet name="Sheet1" sheetId="1" state="visible" r:id="rId2"/></sheets>
</workbook>'
<fileVersion appName="'.__CLASS__.'"/><sheets>
{SHEETS}
</sheets></workbook>'
];
// <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>
}
public function setSheet($idx, $name = null) {
if (!isset($this->sheets[$idx])) {
$this->sheets[$idx] = [];
$this->sheets[$idx]['rows'] = [];
}
$this->curSheet = $idx;
if ($name)
$this->sheets[$idx]['Name'] = $name;
else {
if (!isset($this->sheets[$idx]['Name'])) {
$this->sheets[$idx]['Name'] = 'Sheet'.$idx;
}
}
return $this->sheets[$idx]['Name'];
}
public static function fromArray( array $rows ) {
$xlsx = new self();
$xlsx->setRows( $rows );
return $xlsx;
}
public function setRows( $rows ) {
if ( is_array( $rows ) && isset( $rows[0] ) && is_array($rows[0]) ) {
$this->rows = $rows;
$this->sheets[$this->curSheet]['rows']=$rows;
} else {
$this->rows = [];
$this->sheets[$this->curSheet]['rows']= [];
}
}
public function __toString() {
$fh = fopen( 'php://memory', 'wb' );
if ( ! $fh ) {
@ -105,6 +129,7 @@ class SimpleXLSXGen {
return (string) fread( $fh, $size );
}
public function saveAs( $filename ) {
$fh = fopen( $filename, 'wb' );
if (!$fh) {
@ -118,9 +143,11 @@ class SimpleXLSXGen {
return true;
}
public function download() {
return $this->downloadAs( gmdate('YmdHi') . '.xlsx' );
}
public function downloadAs( $filename ) {
$fh = fopen('php://memory','wb');
if (!$fh) {
@ -149,129 +176,9 @@ class SimpleXLSXGen {
return true;
}
private function _generate( $fh ) {
private function _saveIt($fh, &$cdrec, $cfilename, &$data) {
$zipSignature = "\x50\x4b\x03\x04"; // local file header signature
$dirSignature = "\x50\x4b\x01\x02"; // central dir header signature
$dirSignatureE= "\x50\x4b\x05\x06"; // end of central dir signature
$zipComments = 'Generated by '.__CLASS__.' PHP class, thanks sergey.shuchkin@gmail.com';
// $fh = fopen( $filename, 'wb' );
if (!$fh) {
return false;
}
$SI = [];
$SI_KEYS = [];
$COLS = [];
$ROWS = [];
if ( count($this->rows) ) {
$CUR_ROW = 0;
$COL = [];
foreach( $this->rows as $r ) {
$CUR_ROW++;
$row = '<row r="'.$CUR_ROW.'">';
$CUR_COL = 0;
foreach( $r as $v ) {
$CUR_COL++;
if ( !isset($COL[ $CUR_COL ])) {
$COL[ $CUR_COL ] = 0;
}
if ( $v === null || $v === '' ) {
continue;
}
$vl = mb_strlen( (string) $v );
$COL[ $CUR_COL ] = max( $vl, $COL[ $CUR_COL ] );
$cname = $this->num2name($CUR_COL) . $CUR_ROW;
$ct = $cs = null;
if ( is_string($v) ) {
if ( $v === '0' || preg_match( '/^[-+]?[1-9]\d{0,14}$/', $v ) ) { // Integer as General
$cv = ltrim( $v, '+' );
if ( $vl > 10 ) {
$cs = 1; // [1] 0
}
} elseif ( preg_match('/^[-+]?(0|[1-9]\d*)\.\d+$/', $v ) ) {
$cv = ltrim($v,'+');
} elseif ( preg_match('/^([-+]?\d+)%$/', $v, $m) ) {
$cv = round( $m[1] / 100, 2);
$cs = 2; // [9] 0%
} elseif ( preg_match('/^([-+]\d+\.\d+)%$/', $v, $m) ) {
$cv = round( $m[1] / 100, 4 );
$cs = 3; // [10] 0.00%
} elseif ( preg_match('/^(\d\d\d\d)-(\d\d)-(\d\d)$/', $v, $m ) ){
$cv = $this->date2excel($m[1],$m[2],$m[3]);
$cs = 4; // [14] mm-dd-yy
} elseif ( preg_match('/^(\d\d):(\d\d):(\d\d)$/', $v, $m ) ){
$cv = $this->date2excel(0,0,0,$m[1],$m[2],$m[3]);
$cs = 5; // [14] mm-dd-yy
} elseif ( preg_match('/^(\d\d\d\d)-(\d\d)-(\d\d) (\d\d):(\d\d):(\d\d)$/', $v, $m ) ) {
$cv = $this->date2excel( $m[1], $m[2], $m[3], $m[4], $m[5], $m[6] );
$cs = 6; // [22] m/d/yy h:mm
} elseif ( mb_strlen( $v ) > 160 ) {
$ct = 'inlineStr';
$cv = str_replace(['&','<','>',"\x03"],['&amp;','&lt;','&gt;',''], $v);
} else {
if ( preg_match('/^[0-9+-.]+$/', $v ) ) { // Long ?
$cs = 7; // Align Right
}
$v = ltrim($v,"\0"); // disabled type detection
$ct = 's'; // shared string
$v = str_replace(['&','<','>',"\x03"],['&amp;','&lt;','&gt;',''], $v);
$cv = false;
$skey = '~'.$v;
if ( isset($SI_KEYS[ $skey ]) ) {
$cv = $SI_KEYS[ $skey ];
}
if ( $cv === false ) {
$SI[] = $v;
$cv = count( $SI ) - 1;
$SI_KEYS[$skey] = $cv;
}
}
} elseif ( is_int( $v ) || is_float( $v ) ) {
$cv = $v;
} else {
continue;
}
$row .= '<c r="' . $cname . '"'.($ct ? ' t="'.$ct.'"' : '').($cs ? ' s="'.$cs.'"' : '').'>'
.($ct === 'inlineStr' ? '<is><t>'.$cv.'</t></is>' : '<v>' . $cv . '</v>')."</c>\r\n";
}
$ROWS[] = $row . "</row>\r\n";
}
foreach ( $COL as $k => $max ) {
// $COLS[] = '<col min="'.$k.'" max="'.$k.'" width="'.min( $max+1, 60).'" bestFit="true" customWidth="true" />';
$COLS[] = '<col min="'.$k.'" max="'.$k.'" width="'.min( $max+1, 60).'" />';
}
$REF = 'A1:'.$this->num2name(count($COLS)) . $CUR_ROW;
} else {
$COLS[] = '<col min="1" max="1" bestFit="1" />';
$ROWS[] = '<row r="1"><c r="A1" t="s"><v>0</v></c></row>';
$REF = 'A1:A1';
$SI[] = 'No Data';
}
$SI_CNT = count($SI);
$SI = '<si><t>'.implode("</t></si>\r\n<si><t>", $SI).'</t></si>';
$cdrec = '';
foreach ($this->template as $cfilename => $data ) {
if ( $cfilename === 'docProps/core.xml' ) {
$data = str_replace('{DATE}', gmdate('Y-m-d\TH:i:s\Z'), $data);
} elseif ( $cfilename === 'xl/sharedStrings.xml' ) {
$data = str_replace(['{CNT}', '{STRINGS}'], [ $SI_CNT, $SI ], $data );
} elseif ( $cfilename === 'xl/worksheets/sheet1.xml' ) {
$data = str_replace(['{REF}','{COLS}','{ROWS}'],[ $REF, implode("\r\n", $COLS), implode("\r\n",$ROWS) ], $data );
}
$e = [];
$e['uncsize'] = mb_strlen($data, '8bit');
@ -349,6 +256,182 @@ class SimpleXLSXGen {
$cdrec .= $cfilename;
$cdrec .= $e['comments'];
}
private function worksheetEncode(&$sheet, &$data) {
$COLS = [];
$ROWS = [];
if ( count($sheet['rows']) ) {
$CUR_ROW = 0;
$COL = [];
foreach( $sheet['rows'] as $r ) {
$CUR_ROW++;
$row = '<row r="'.$CUR_ROW.'">';
$CUR_COL = 0;
foreach( $r as $v ) {
$CUR_COL++;
if ( !isset($COL[ $CUR_COL ])) {
$COL[ $CUR_COL ] = 0;
}
if ( $v === null || $v === '' ) {
continue;
}
$vl = mb_strlen( (string) $v );
$COL[ $CUR_COL ] = max( $vl, $COL[ $CUR_COL ] );
$cname = $this->num2name($CUR_COL) . $CUR_ROW;
$ct = $cs = null;
if ( is_string($v) ) {
if ( $v === '0' || preg_match( '/^[-+]?[1-9]\d{0,14}$/', $v ) ) { // Integer as General
$cv = ltrim( $v, '+' );
if ( $vl > 10 ) {
$cs = 1; // [1] 0
}
} elseif ( preg_match('/^[-+]?(0|[1-9]\d*)\.\d+$/', $v ) ) {
$cv = ltrim($v,'+');
} elseif ( preg_match('/^([-+]?\d+)%$/', $v, $m) ) {
$cv = round( $m[1] / 100, 2);
$cs = 2; // [9] 0%
} elseif ( preg_match('/^([-+]\d+\.\d+)%$/', $v, $m) ) {
$cv = round( $m[1] / 100, 4 );
$cs = 3; // [10] 0.00%
} elseif ( preg_match('/^(\d\d\d\d)-(\d\d)-(\d\d)$/', $v, $m ) ){
$cv = $this->date2excel($m[1],$m[2],$m[3]);
$cs = 4; // [14] mm-dd-yy
} 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
} elseif ( preg_match('/^(\d\d):(\d\d):(\d\d)$/', $v, $m ) ){
$cv = $this->date2excel(0,0,0,$m[1],$m[2],$m[3]);
$cs = 5; // [14] mm-dd-yy
} elseif ( preg_match('/^(\d\d\d\d)-(\d\d)-(\d\d) (\d\d):(\d\d):(\d\d)$/', $v, $m ) ) {
$cv = $this->date2excel( $m[1], $m[2], $m[3], $m[4], $m[5], $m[6] );
$cs = 6; // [22] m/d/yy h:mm
} 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
} elseif ( mb_strlen( $v ) > 160 ) {
$ct = 'inlineStr';
$cv = str_replace(['&','<','>',"\x03"],['&amp;','&lt;','&gt;',''], $v);
} else {
if ( preg_match('/^[0-9+-.]+$/', $v ) ) { // Long ?
$cs = 7; // Align Right
}
$v = ltrim($v,"\0"); // disabled type detection
$ct = 's'; // shared string
$v = str_replace(['&','<','>',"\x03"],['&amp;','&lt;','&gt;',''], $v);
$cv = false;
$skey = '~'.$v;
if ( isset($this->SI_KEYS[ $skey ]) ) {
$cv = $this->SI_KEYS[ $skey ];
}
if ( $cv === false ) {
$this->SI[] = $v;
$cv = count( $this->SI ) - 1;
$this->SI_KEYS[$skey] = $cv;
}
}
} elseif ( is_int( $v ) || is_float( $v ) ) {
$cv = $v;
} else {
continue;
}
$row .= '<c r="' . $cname . '"'.($ct ? ' t="'.$ct.'"' : '').($cs ? ' s="'.$cs.'"' : '').'>'
.($ct === 'inlineStr' ? '<is><t>'.$cv.'</t></is>' : '<v>' . $cv . '</v>')."</c>\r\n";
}
$ROWS[] = $row . "</row>\r\n";
}
foreach ( $COL as $k => $max ) {
$COLS[] = '<col min="'.$k.'" max="'.$k.'" width="'.min( $max+1, 60).'" />';
}
$REF = 'A1:'.$this->num2name(count($COLS)) . $CUR_ROW;
} else {
$COLS[] = '<col min="1" max="1" bestFit="1" />';
$ROWS[] = '<row r="1"><c r="A1" t="s"><v>0</v></c></row>';
$REF = 'A1:A1';
}
return str_replace(['{REF}','{COLS}','{ROWS}'],
[ $REF, implode("\r\n", $COLS), implode("\r\n",$ROWS) ],
$data );
}
private function _generate( $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
foreach ($this->template as $cfilename => $data ) {
if ( $cfilename === '[Content_Types].xml' ) {
$s = '';
for ($i=0; $i < count($this->sheets); $i++) {
$s .= '<Override PartName="/xl/worksheets/sheet'.($i+1).
'.xml" ContentType="application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml"/>';
}
$data = str_replace('{SHEETS}', $s, $data);
$this->_saveIt($fh, $cdrec, $cfilename, $data);
$entries++;
}
elseif ( $cfilename === 'xl/_rels/workbook.xml.rels' ) {
$s = '';
for ($i=0; $i < count($this->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>';
$data = str_replace('{SHEETS}', $s, $data);
$this->_saveIt($fh, $cdrec, $cfilename, $data);
$entries++;
}
elseif ( $cfilename === 'xl/workbook.xml' ) {
$s = '';
for ($i=0; $i < count($this->sheets); $i++) {
$s .= '<sheet name="'.$this->sheets[$i]['Name'].'" sheetId="'.($i+1).'" state="visible" r:id="rId'.($i+2).'"/>';
}
$data = str_replace('{SHEETS}', $s, $data);
$this->_saveIt($fh, $cdrec, $cfilename, $data);
$entries++;
}
elseif ( $cfilename === 'docProps/core.xml' ) {
$data = str_replace('{DATE}', gmdate('Y-m-d\TH:i:s\Z'), $data);
$this->_saveIt($fh, $cdrec, $cfilename, $data);
$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>';
$data = str_replace(['{CNT}', '{STRINGS}'], [ $si_cnt, $this->SI ], $data );
$this->_saveIt($fh, $cdrec, $cfilename, $data);
$entries++;
} elseif ( $cfilename === 'xl/worksheets/sheet1.xml' ) {
for ($i=0; $i < count($this->sheets); $i++) {
$filename = 'xl/worksheets/sheet'.($i+1).'.xml';
$data1 = $this->worksheetEncode($this->sheets[$i], $data);
$this->_saveIt($fh, $cdrec, $filename, $data1);
$entries++;
}
$data1=null;
}
else {
$this->_saveIt($fh, $cdrec, $cfilename, $data);
$entries++;
}
}
$before_cd = ftell($fh);
fwrite($fh, $cdrec);
@ -356,8 +439,8 @@ class SimpleXLSXGen {
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', count( $this->template ))); // total # of entries "on this disk"
fwrite($fh, pack('v', count( $this->template ))); // total # of entries overall
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
@ -365,6 +448,7 @@ class SimpleXLSXGen {
return true;
}
public function num2name($num) {
$numeric = ($num - 1) % 26;
$letter = chr( 65 + $numeric );
@ -374,6 +458,7 @@ class SimpleXLSXGen {
}
return $letter;
}
public function date2excel($year, $month, $day, $hours=0, $minutes=0, $seconds=0) {
$excelTime = (($hours * 3600) + ($minutes * 60) + $seconds) / 86400;