Does any know of a PHP excel exporting package that satisfies the following conditions:
- Not PHPExcel – since phpExcel has performance issues with large table
- Able to export Excel 8.0 – Excel 11.0 (1997-2003) format or later file via PHP such that the file can be downloaded
- Actually exports in Excel BIFF and not HTML/XML/other tricks
I tried http://code.google.com/p/php-excel/ but it seems to export in an excel version below 8.0 which causes excel 2010 to complain when opening the file
Does anybody know if the PEAR exporter (http://pear.php.net/package/Spreadsheet_Excel_Writer/redirected) satisfy these conditions (obviously it satisfies condition 1)
You’ll find that most Excel exporter classes have performance issues with large tables (including PEAR), and those overheads can be reduced in PHPExcel by using features like cell caching that were deliberately added for just that purpose; but there;’s a whole host of alternatives listed here.