Merge pull request #25 from stdex/pref_improve_concata
String concat performance improve
This commit is contained in:
commit
a386acb9f4
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue