ILIAS
Release_3_10_x_branch Revision 61812
|
Public Member Functions | |
Spreadsheet_Excel_Writer_BIFFwriter () | |
Constructor. | |
_setByteOrder () | |
Determine the byte order and store it as class data to avoid recalculating it for each call to new(). | |
_prepend ($data) | |
General storage function. | |
_append ($data) | |
General storage function. | |
_storeBof ($type) | |
Writes Excel BOF record to indicate the beginning of a stream or sub-stream in the BIFF file. | |
_storeEof () | |
Writes Excel EOF record to indicate the end of a BIFF stream. | |
_addContinue ($data) | |
Excel limits the size of BIFF records. |
Data Fields | |
$_BIFF_version = 0x0500 | |
$_byte_order | |
$_data | |
$_datasize | |
$_limit |
Definition at line 54 of file BIFFwriter.php.
Spreadsheet_Excel_Writer_BIFFwriter::_addContinue | ( | $data | ) |
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 |
Definition at line 215 of file BIFFwriter.php.
References $_limit, and $data.
Referenced by _append(), Spreadsheet_Excel_Writer_Worksheet\_append(), and _prepend().
Spreadsheet_Excel_Writer_BIFFwriter::_append | ( | $data | ) |
General storage function.
string | $data | binary data to append private |
Reimplemented in Spreadsheet_Excel_Writer_Worksheet.
Definition at line 148 of file BIFFwriter.php.
References $data, and _addContinue().
Referenced by Spreadsheet_Excel_Writer_Workbook\_storeAllFonts(), Spreadsheet_Excel_Writer_Workbook\_storeAllXfs(), Spreadsheet_Excel_Writer_Workbook\_storeBoundsheet(), Spreadsheet_Excel_Writer_Workbook\_storeCodepage(), Spreadsheet_Excel_Writer_Workbook\_storeCountry(), Spreadsheet_Excel_Writer_Workbook\_storeDatemode(), _storeEof(), Spreadsheet_Excel_Writer_Workbook\_storeExterncount(), Spreadsheet_Excel_Writer_Workbook\_storeExternsheet(), Spreadsheet_Excel_Writer_Workbook\_storeExternsheetBiff8(), Spreadsheet_Excel_Writer_Workbook\_storeNameLong(), Spreadsheet_Excel_Writer_Workbook\_storeNameShort(), Spreadsheet_Excel_Writer_Workbook\_storeNumFormat(), Spreadsheet_Excel_Writer_Workbook\_storePalette(), Spreadsheet_Excel_Writer_Workbook\_storeSharedStringsTable(), Spreadsheet_Excel_Writer_Workbook\_storeStyle(), Spreadsheet_Excel_Writer_Workbook\_storeSupbookInternal(), and Spreadsheet_Excel_Writer_Workbook\_storeWindow1().
Spreadsheet_Excel_Writer_BIFFwriter::_prepend | ( | $data | ) |
General storage function.
string | $data | binary data to prepend private |
Definition at line 133 of file BIFFwriter.php.
References $data, and _addContinue().
Referenced by _storeBof().
Spreadsheet_Excel_Writer_BIFFwriter::_setByteOrder | ( | ) |
Determine the byte order and store it as class data to avoid recalculating it for each call to new().
private
Definition at line 108 of file BIFFwriter.php.
Referenced by Spreadsheet_Excel_Writer_BIFFwriter().
Spreadsheet_Excel_Writer_BIFFwriter::_storeBof | ( | $type | ) |
Writes Excel BOF record to indicate the beginning of a stream or sub-stream in the BIFF file.
integer | $type | Type of BIFF file to write: 0x0005 Workbook, 0x0010 Worksheet. private |
Definition at line 165 of file BIFFwriter.php.
References $_BIFF_version, $data, and _prepend().
Referenced by Spreadsheet_Excel_Writer_Workbook\_storeWorkbook(), and Spreadsheet_Excel_Writer_Worksheet\close().
Spreadsheet_Excel_Writer_BIFFwriter::_storeEof | ( | ) |
Writes Excel EOF record to indicate the end of a BIFF stream.
private
Definition at line 195 of file BIFFwriter.php.
References _append().
Referenced by Spreadsheet_Excel_Writer_Workbook\_storeWorkbook(), and Spreadsheet_Excel_Writer_Worksheet\close().
Spreadsheet_Excel_Writer_BIFFwriter::Spreadsheet_Excel_Writer_BIFFwriter | ( | ) |
Constructor.
public
Definition at line 92 of file BIFFwriter.php.
References _setByteOrder().
Referenced by Spreadsheet_Excel_Writer_Workbook\Spreadsheet_Excel_Writer_Workbook(), and Spreadsheet_Excel_Writer_Worksheet\Spreadsheet_Excel_Writer_Worksheet().
Spreadsheet_Excel_Writer_BIFFwriter::$_BIFF_version = 0x0500 |
Definition at line 60 of file BIFFwriter.php.
Referenced by _storeBof().
Spreadsheet_Excel_Writer_BIFFwriter::$_byte_order |
Definition at line 66 of file BIFFwriter.php.
Spreadsheet_Excel_Writer_BIFFwriter::$_data |
Definition at line 72 of file BIFFwriter.php.
Referenced by Spreadsheet_Excel_Writer_Worksheet\getData().
Spreadsheet_Excel_Writer_BIFFwriter::$_datasize |
Definition at line 78 of file BIFFwriter.php.
Referenced by Spreadsheet_Excel_Writer_Workbook\_calcSheetOffsets().
Spreadsheet_Excel_Writer_BIFFwriter::$_limit |
Definition at line 85 of file BIFFwriter.php.
Referenced by _addContinue().