mk-j / PHP_XLSXWriter

Lightweight XLSX Excel Spreadsheet Writer in PHP
MIT License
1.84k stars 665 forks source link

Max Cell String length 32767 #283

Open megellano opened 4 years ago

megellano commented 4 years ago

Max chars in xlsx cell 32 767. I fix it for me in protected function writeCell() if(mb_strlen($value) > 32767){ $value = "!!!!!!!!!!!!! Tooo long value !!!!!!!!!!!!!!!!!"; }