author = $author;
}
public function __destruct() {
if (!empty($this->temp_files)) {
foreach ($this->temp_files as $temp_file) {
@unlink($temp_file);
}
}
}
protected function tempFilename() {
$filename = tempnam(sys_get_temp_dir(), "xlsx_writer_");
$this->temp_files[] = $filename;
return $filename;
}
public function writeToStdOut() {
$temp_file = $this->tempFilename();
self::writeToFile($temp_file);
readfile($temp_file);
}
public function writeToString() {
$temp_file = $this->tempFilename();
self::writeToFile($temp_file);
$string = file_get_contents($temp_file);
return $string;
}
public function writeToFile($filename) {
foreach ($this->sheets as $sheet_name => $sheet) {
self::finalizeSheet($sheet_name);//making sure all footers have been written
}
@unlink($filename);//if the zip already exists, overwrite it
$zip = new \ZipArchive();
if (empty($this->sheets)) { self::log("Error in " . __CLASS__ . "::" . __FUNCTION__ . ", no worksheets defined.");
return;
}
if (!$zip->open($filename, \ZipArchive::CREATE)) { self::log("Error in " . __CLASS__ . "::" . __FUNCTION__ . ", unable to create zip.");
return;
}
$zip->addEmptyDir("docProps/");
$zip->addFromString("docProps/app.xml", self::buildAppXML() );
$zip->addFromString("docProps/core.xml", self::buildCoreXML());
$zip->addEmptyDir("_rels/");
$zip->addFromString("_rels/.rels", self::buildRelationshipsXML());
$zip->addEmptyDir("xl/worksheets/");
foreach ($this->sheets as $sheet) {
$zip->addFile($sheet->filename, "xl/worksheets/" . $sheet->xmlname );
}
if (!empty($this->shared_strings)) {
$zip->addFile($this->writeSharedStringsXML(), "xl/sharedStrings.xml" ); //$zip->addFromString("xl/sharedStrings.xml", self::buildSharedStringsXML() );
}
$zip->addFromString("xl/workbook.xml", self::buildWorkbookXML() );
$zip->addFile($this->writeStylesXML(), "xl/styles.xml" ); //$zip->addFromString("xl/styles.xml" , self::buildStylesXML() );
$zip->addFromString("[Content_Types].xml", self::buildContentTypesXML() );
$zip->addEmptyDir("xl/_rels/");
$zip->addFromString("xl/_rels/workbook.xml.rels", self::buildWorkbookRelsXML() );
$zip->close();
}
protected function initializeSheet($sheet_name) {
//if already initialized
if ($this->current_sheet == $sheet_name || isset($this->sheets[$sheet_name]))
return;
$sheet_filename = $this->tempFilename();
$sheet_xmlname = 'sheet' . (count($this->sheets) + 1) . ".xml";
$this->sheets[$sheet_name] = (object)[
'filename' => $sheet_filename,
'sheetname' => $sheet_name,
'xmlname' => $sheet_xmlname,
'row_count' => 0,
'file_writer' => new XLSXWriter_BuffererWriter($sheet_filename),
'cell_formats' => [],
'max_cell_tag_start' => 0,
'max_cell_tag_end' => 0,
'finalized' => false,
];
$sheet = &$this->sheets[$sheet_name];
$tabselected = count($this->sheets) == 1 ? 'true' : 'false';//only first sheet is selected
$max_cell = XLSXWriter::xlsCell(self::EXCEL_2007_MAX_ROW, self::EXCEL_2007_MAX_COL);//XFE1048577
$sheet->file_writer->write('' . "\n");
$sheet->file_writer->write('');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->max_cell_tag_start = $sheet->file_writer->ftell();
$sheet->file_writer->write('');
$sheet->max_cell_tag_end = $sheet->file_writer->ftell();
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
}
public function writeSheetHeader($sheet_name, array $header_types) {
if (empty($sheet_name) || empty($header_types) || !empty($this->sheets[$sheet_name]))
return;
self::initializeSheet($sheet_name);
$sheet = &$this->sheets[$sheet_name];
$sheet->cell_formats = array_values($header_types);
$header_row = array_keys($header_types);
$sheet->file_writer->write('');
foreach ($header_row as $k => $v) {
$this->writeCell($sheet->file_writer, 0, $k, $v, $cell_format = 'string');
}
$sheet->file_writer->write('
');
$sheet->row_count++;
$this->current_sheet = $sheet_name;
}
public function writeSheetRow($sheet_name, array $row) {
if (empty($sheet_name) || empty($row))
return;
self::initializeSheet($sheet_name);
$sheet = &$this->sheets[$sheet_name];
if (empty($sheet->cell_formats))
{
$sheet->cell_formats = array_fill(0, count($row), 'string');
}
$sheet->file_writer->write('');
foreach ($row as $k => $v) {
$this->writeCell($sheet->file_writer, $sheet->row_count, $k, $v, $sheet->cell_formats[$k]);
}
$sheet->file_writer->write('
');
$sheet->row_count++;
$this->current_sheet = $sheet_name;
}
protected function finalizeSheet($sheet_name) {
if (empty($sheet_name) || $this->sheets[$sheet_name]->finalized)
return;
$sheet = &$this->sheets[$sheet_name];
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '');
$sheet->file_writer->write( '&C&"Times New Roman,Regular"&12&A');
$sheet->file_writer->write( '&C&"Times New Roman,Regular"&12Page &P');
$sheet->file_writer->write( '');
$sheet->file_writer->write('');
$max_cell = self::xlsCell($sheet->row_count - 1, count($sheet->cell_formats) - 1);
$max_cell_tag = '';
$padding_length = $sheet->max_cell_tag_end - $sheet->max_cell_tag_start - strlen($max_cell_tag);
$sheet->file_writer->fseek($sheet->max_cell_tag_start);
$sheet->file_writer->write($max_cell_tag . str_repeat(" ", (int)$padding_length));
$sheet->file_writer->close();
$sheet->finalized = true;
}
public function writeSheet(array $data, $sheet_name='', array $header_types=[] ) {
$sheet_name = empty($sheet_name) ? 'Sheet1' : $sheet_name;
$data = empty($data) ? [['']] : $data;
if (!empty($header_types))
{
$this->writeSheetHeader($sheet_name, $header_types);
}
foreach ($data as $i => $row)
{
$this->writeSheetRow($sheet_name, $row);
}
$this->finalizeSheet($sheet_name);
}
protected function writeCell(XLSXWriter_BuffererWriter &$file, $row_number, $column_number, $value, $cell_format) {
static $styles = ['money' => 1,'dollar' => 1,'datetime' => 2,'date' => 3,'string' => 0];
$cell = self::xlsCell($row_number, $column_number);
$s = isset($styles[$cell_format]) ? $styles[$cell_format] : '0';
if (!is_scalar($value) || $value == '') { //objects, array, empty
$file->write('');
} elseif ($cell_format == 'date') {
$file->write('' . intval(self::convert_date_time($value)) . '');
} elseif ($cell_format == 'datetime') {
$file->write('' . self::convert_date_time($value) . '');
} elseif (!is_string($value)) {
$file->write('' . ($value * 1) . '');//int,float, etc
} elseif ($value[0] != '0' && filter_var($value, FILTER_VALIDATE_INT)){ //excel wants to trim leading zeros
$file->write('' . ($value) . '');//numeric string
} elseif ($value[0] == '='){
$file->write('' . self::xmlspecialchars($value) . '');
} elseif ($value !== ''){
$file->write('' . self::xmlspecialchars($this->setSharedString($value)) . '');
}
}
protected function writeStylesXML() {
$temporary_filename = $this->tempFilename();
$file = new XLSXWriter_BuffererWriter($temporary_filename);
$file->write('' . "\n");
$file->write('');
$file->write('');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write('');
$file->write('');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write('');
$file->write('');
$file->write('');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write( '');
$file->write('');
$file->close();
return $temporary_filename;
}
protected function setSharedString($v) {
if (isset($this->shared_strings[$v]))
{
$string_value = $this->shared_strings[$v];
}
else
{
$string_value = count($this->shared_strings);
$this->shared_strings[$v] = $string_value;
}
$this->shared_string_count++;//non-unique count
return $string_value;
}
protected function writeSharedStringsXML() {
$temporary_filename = $this->tempFilename();
$file = new XLSXWriter_BuffererWriter($temporary_filename, $fd_flags = 'w', $check_utf8 = true);
$file->write('' . "\n");
$file->write('');
foreach ($this->shared_strings as $s => $c)
{
$file->write('' . self::xmlspecialchars($s) . '');
}
$file->write('');
$file->close();
return $temporary_filename;
}
protected function buildAppXML() {
$app_xml = "";
$app_xml .= '' . "\n";
$app_xml .= '0';
return $app_xml;
}
protected function buildCoreXML() {
$core_xml = "";
$core_xml .= '' . "\n";
$core_xml .= '';
$core_xml .= '' . date("Y-m-d\TH:i:s.00\Z") . '';//$date_time = '2014-10-25T15:54:37.00Z';
$core_xml .= '' . self::xmlspecialchars($this->author) . '';
$core_xml .= '0';
$core_xml .= '';
return $core_xml;
}
protected function buildRelationshipsXML() {
$rels_xml = "";
$rels_xml .= '' . "\n";
$rels_xml .= '';
$rels_xml .= '';
$rels_xml .= '';
$rels_xml .= '';
$rels_xml .= "\n";
$rels_xml .= '';
return $rels_xml;
}
protected function buildWorkbookXML() {
$i = 0;
$workbook_xml = "";
$workbook_xml .= '' . "\n";
$workbook_xml .= '';
$workbook_xml .= '';
$workbook_xml .= '';
$workbook_xml .= '';
foreach ($this->sheets as $sheet_name => $sheet) {
$workbook_xml .= '';
$i++;
}
$workbook_xml .= '';
$workbook_xml .= '';
return $workbook_xml;
}
protected function buildWorkbookRelsXML() {
$i = 0;
$wkbkrels_xml = "";
$wkbkrels_xml .= '' . "\n";
$wkbkrels_xml .= '';
$wkbkrels_xml .= '';
foreach ($this->sheets as $sheet_name => $sheet) {
$wkbkrels_xml .= '';
$i++;
}
if (!empty($this->shared_strings)) {
$wkbkrels_xml .= '';
}
$wkbkrels_xml .= "\n";
$wkbkrels_xml .= '';
return $wkbkrels_xml;
}
protected function buildContentTypesXML() {
$content_types_xml = "";
$content_types_xml .= '' . "\n";
$content_types_xml .= '';
$content_types_xml .= '';
$content_types_xml .= '';
foreach ($this->sheets as $sheet_name => $sheet) {
$content_types_xml .= '';
}
if (!empty($this->shared_strings)) {
$content_types_xml .= '';
}
$content_types_xml .= '';
$content_types_xml .= '';
$content_types_xml .= '';
$content_types_xml .= '';
$content_types_xml .= "\n";
$content_types_xml .= '';
return $content_types_xml;
}
//------------------------------------------------------------------
/*
* @param $row_number int, zero based
* @param $column_number int, zero based
* @return Cell label/coordinates, ex: A1, C3, AA42
* */
public static function xlsCell($row_number, $column_number) {
$n = $column_number;
for ($r = ""; $n >= 0; $n = intval($n / 26) - 1) {
$r = chr($n % 26 + 0x41) . $r;
}
return $r . ($row_number + 1);
}
//------------------------------------------------------------------
public static function log($string) {
file_put_contents("php://stderr", date("Y-m-d H:i:s:") . rtrim(is_array($string) ? json_encode($string) : $string) . "\n");
}
//------------------------------------------------------------------
public static function sanitize_filename($filename) {
//http://msdn.microsoft.com/en-us/library/aa365247%28VS.85%29.aspx
$nonprinting = array_map('chr', range(0, 31));
$invalid_chars = ['<', '>', '?', '"', ':', '|', '\\', '/', '*', '&'];
$all_invalids = array_merge($nonprinting, $invalid_chars);
return str_replace($all_invalids, "", $filename);
}
//------------------------------------------------------------------
public static function xmlspecialchars($val) {
return str_replace("'", "'", htmlspecialchars($val));
}
//------------------------------------------------------------------
public static function array_first_key(array $arr) {
reset($arr);
$first_key = key($arr);
return $first_key;
}
//------------------------------------------------------------------
public static function convert_date_time($date_input) {
//thanks to Excel::Writer::XLSX::Worksheet.pm (perl)
$days = 0; # Number of days since epoch
$seconds = 0; # Time expressed as fraction of 24h hours in seconds
$year = $month = $day = 0;
$hour = $min = $sec = 0;
$date_time = $date_input;
if (preg_match("/(\d{4})\-(\d{2})\-(\d{2})/", $date_time, $matches))
{
list($junk,$year,$month,$day) = $matches;
}
if (preg_match("/(\d{2}):(\d{2}):(\d{2})/", $date_time, $matches))
{
list($junk,$hour,$min,$sec) = $matches;
$seconds = ( $hour * 60 * 60 + $min * 60 + $sec ) / ( 24 * 60 * 60 );
}
//using 1900 as epoch, not 1904, ignoring 1904 special case
# Special cases for Excel.
if ("$year-$month-$day" == '1899-12-31') return $seconds ; # Excel 1900 epoch
if ("$year-$month-$day" == '1900-01-00') return $seconds ; # Excel 1900 epoch
if ("$year-$month-$day" == '1900-02-29') return 60 + $seconds ; # Excel false leapday
# We calculate the date by calculating the number of days since the epoch
# and adjust for the number of leap days. We calculate the number of leap
# days by normalising the year in relation to the epoch. Thus the year 2000
# becomes 100 for 4 and 100 year leapdays and 400 for 400 year leapdays.
$epoch = 1900;
$offset = 0;
$norm = 300;
$range = $year - $epoch;
# Set month days and check for leap year.
$leap = (($year % 400 == 0) || (($year % 4 == 0) && ($year % 100)) ) ? 1 : 0;
$mdays = [ 31, ($leap ? 29 : 28), 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
# Some boundary checks
if ($year < $epoch || $year > 9999) return 0;
if ($month < 1 || $month > 12) return 0;
if ($day < 1 || $day > $mdays[$month - 1]) return 0;
# Accumulate the number of days since the epoch.
$days = $day; # Add days for current month
$days += array_sum( array_slice($mdays, 0, $month - 1 ) ); # Add days for past months
$days += $range * 365; # Add days for past years
$days += intval( ( $range ) / 4 ); # Add leapdays
$days -= intval( ( $range + $offset ) / 100 ); # Subtract 100 year leapdays
$days += intval( ( $range + $offset + $norm ) / 400 ); # Add 400 year leapdays
$days -= $leap; # Already counted above
# Adjust for Excel erroneously treating 1900 as a leap year.
if ($days > 59) { $days++;
}
return $days + $seconds;
}
//------------------------------------------------------------------
}
class XLSXWriter_BuffererWriter
{
protected $fd = null;
protected $buffer = '';
protected $check_utf8 = false;
public function __construct($filename, $fd_fopen_flags='w', $check_utf8=false) {
$this->check_utf8 = $check_utf8;
$this->fd = fopen($filename, $fd_fopen_flags);
if ($this->fd === false) {
XLSXWriter::log("Unable to open $filename for writing.");
}
}
public function write($string) {
$this->buffer .= $string;
if (isset($this->buffer[8191])) {
$this->purge();
}
}
protected function purge() {
if ($this->fd) {
if ($this->check_utf8 && !self::isValidUTF8($this->buffer)) {
XLSXWriter::log("Error, invalid UTF8 encoding detected.");
$this->check_utf8 = false;
}
fwrite($this->fd, $this->buffer);
$this->buffer = '';
}
}
public function close() {
$this->purge();
if ($this->fd) {
fclose($this->fd);
$this->fd = null;
}
}
public function __destruct() {
$this->close();
}
public function ftell() {
if ($this->fd) {
$this->purge();
return ftell($this->fd);
}
return -1;
}
public function fseek($pos) {
if ($this->fd) {
$this->purge();
return fseek($this->fd, $pos);
}
return -1;
}
protected static function isValidUTF8($string) {
if (function_exists('mb_check_encoding'))
{
return mb_check_encoding($string, 'UTF-8') ? true : false;
}
return preg_match("//u", $string) ? true : false;
}
}