1 | <?php |
||
7 | class ContinueRecord extends AbstractRecord |
||
8 | { |
||
9 | const NAME = 'CONTINUE'; |
||
10 | const ID = 0x003C; |
||
11 | |||
12 | /** |
||
13 | * Excel limits the size of BIFF records. In Excel 97 the limit is 8228 bytes. |
||
14 | * Records that are longer than these limits |
||
15 | * must be split up into CONTINUE blocks. |
||
16 | * |
||
17 | * This function takes a long BIFF record and inserts CONTINUE records as |
||
18 | * necessary. |
||
19 | * |
||
20 | * @param string $data The original binary data to be written |
||
21 | * |
||
22 | * @return string Сonvenient string of continue blocks |
||
23 | */ |
||
24 | public function getData($data) |
||
41 | |||
42 | public function getDataRaw($data) |
||
66 | } |
||
67 |