Skip to content

Commit

Permalink
Merge pull request #25 from stdex/pref_improve_concata
Browse files Browse the repository at this point in the history
String concat performance improve
  • Loading branch information
sanmai committed Jul 12, 2020
2 parents 3df40b9 + 0694303 commit a386acb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Spreadsheet/Excel/Writer/BIFFwriter.php
Expand Up @@ -163,7 +163,7 @@ protected function _append($data)
if (strlen($data) > $this->_limit) {
$data = $this->_addContinue($data);
}
$this->_data = $this->_data.$data;
$this->_data .= $data;
$this->_datasize += strlen($data);
}

Expand Down

0 comments on commit a386acb

Please sign in to comment.