$_data
$_data : string
The string containing the data of the BIFF stream
PHPExcel_Writer_Excel5_BIFFwriter
$_data : string
The string containing the data of the BIFF stream
$_datasize : int
The size of the data in bytes. Should be the same as strlen($this->_data)
$_limit : int
The maximum length for a BIFF record (excluding record header and length field). See _addContinue()
$_byte_order : int
The byte order of this architecture. 0 => little endian, 1 => big endian
_addContinue(string $data) : string
Excel limits the size of BIFF records. In Excel 5 the limit is 2084 bytes. In Excel 97 the limit is 8228 bytes. Records that are longer than these limits must be split up into CONTINUE blocks.
This function takes a long BIFF record and inserts CONTINUE records as necessary.
string | $data | The original binary data to be written |
A very convenient string of continue blocks
Loading…