Merge pull request #25 from stdex/pref_improve_concata

String concat performance improve
This commit is contained in:
Alexey Kopytko 2020-07-12 11:56:58 +09:00 committed by GitHub
commit a386acb9f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ class Spreadsheet_Excel_Writer_BIFFwriter extends PEAR
if (strlen($data) > $this->_limit) { if (strlen($data) > $this->_limit) {
$data = $this->_addContinue($data); $data = $this->_addContinue($data);
} }
$this->_data = $this->_data.$data; $this->_data .= $data;
$this->_datasize += strlen($data); $this->_datasize += strlen($data);
} }