| 1 | <?php |
||
| 7 | class SharedStringsTable extends AbstractRecord |
||
| 8 | { |
||
| 9 | const NAME = 'SST'; |
||
| 10 | const ID = 0x00fc; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Write all of the workbooks strings into an indexed array. |
||
| 14 | * |
||
| 15 | * The Excel documentation says that the SST record should be followed by an |
||
| 16 | * EXTSST record. The EXTSST record is a hash table that is used to optimise |
||
| 17 | * access to SST. However, despite the documentation it doesn't seem to be |
||
| 18 | * required so we will ignore it. |
||
| 19 | * |
||
| 20 | * @param SST $sst |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | public function getData(SST $sst) |
||
| 35 | } |
||
| 36 |