You are here

public function PHPExcel_Writer_Excel5_BIFFwriter::writeData in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php \PHPExcel_Writer_Excel5_BIFFwriter::writeData()

* General storage function like _append, but returns string instead of modifying $this->_data * *

Parameters

string $data binary data to write: * @return string

8 calls to PHPExcel_Writer_Excel5_BIFFwriter::writeData()
PHPExcel_Writer_Excel5_BIFFwriter::writeEof 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::_writeAllDefinedNamesBiff8 in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Workbook.php
* Writes all the DEFINEDNAME records (BIFF8). * So far this is only used for repeating rows/columns (print titles) and print areas
PHPExcel_Writer_Excel5_Workbook::_writeCountry in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Workbook.php
* Stores the COUNTRY record for localization * *
PHPExcel_Writer_Excel5_Workbook::_writeExternsheetBiff8 in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Workbook.php
* Writes the Excel BIFF EXTERNSHEET record. These references are used by * formulas. *
PHPExcel_Writer_Excel5_Workbook::_writeMsoDrawingGroup in vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/Workbook.php
* Writes the MSODRAWINGGROUP record if needed. Possibly split using CONTINUE records.

... See full list

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Writer/Excel5/BIFFwriter.php, line 154

Class

PHPExcel_Writer_Excel5_BIFFwriter
PHPExcel_Writer_Excel5_BIFFwriter

Code

public function writeData($data) {
  if (strlen($data) - 4 > $this->_limit) {
    $data = $this
      ->_addContinue($data);
  }
  $this->_datasize += strlen($data);
  return $data;
}