function PHPExcel_Writer_Excel5_BIFFwriter::_append in Loft Data Grids 6.2
Same name and namespace in other branches
- 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php \PHPExcel_Writer_Excel5_BIFFwriter::_append()
* General storage function * *
Parameters
string $data binary data to append: * @access private
69 calls to PHPExcel_Writer_Excel5_BIFFwriter::_append()
- PHPExcel_Writer_Excel5_BIFFwriter::_storeBof in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/ BIFFwriter.php - * Writes Excel BOF record to indicate the beginning of a stream or * sub-stream in the BIFF file. * *
- PHPExcel_Writer_Excel5_BIFFwriter::_storeEof in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/ BIFFwriter.php - * Writes Excel EOF record to indicate the end of a BIFF stream. * * @access private
- PHPExcel_Writer_Excel5_Workbook::_writeAllFonts in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/ Workbook.php - * Store the Excel FONT records.
- PHPExcel_Writer_Excel5_Workbook::_writeAllXfs in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/ Workbook.php - * Write all XF records.
- PHPExcel_Writer_Excel5_Workbook::_writeBoundsheet in vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/ Workbook.php - * Writes Excel BIFF BOUNDSHEET record. * *
File
- vendor/
phpoffice/ phpexcel/ Classes/ PHPExcel/ Writer/ Excel5/ BIFFwriter.php, line 139
Class
- PHPExcel_Writer_Excel5_BIFFwriter
- PHPExcel_Writer_Excel5_BIFFwriter
Code
function _append($data) {
if (strlen($data) - 4 > $this->_limit) {
$data = $this
->_addContinue($data);
}
$this->_data .= $data;
$this->_datasize += strlen($data);
}