I am using mk-j/PHP_XLSXWriter to generate an xlsx file.
The change that was made in the recent version of PHP_XLSXWriter was to stop using shared string, and to write all strings as inline strings. Switching to inline strings was done on purpose to reduce memory usage when writing gigantic spreadsheets.
But when i now try to import/read this script with the spreadsheet-parser it does not read any values but the nummeric values and al the other columns are shown blank/empty.
An older version of PHP_XLSXWriter using shared strings can be imported.
Can anyone explain what is going wrong and why the columns array empty in de generated array?
I am using mk-j/PHP_XLSXWriter to generate an xlsx file.
The change that was made in the recent version of PHP_XLSXWriter was to stop using shared string, and to write all strings as inline strings. Switching to inline strings was done on purpose to reduce memory usage when writing gigantic spreadsheets.
But when i now try to import/read this script with the spreadsheet-parser it does not read any values but the nummeric values and al the other columns are shown blank/empty.
An older version of PHP_XLSXWriter using shared strings can be imported.
Can anyone explain what is going wrong and why the columns array empty in de generated array?