3

Possible Duplicate:
Alternative for PHP_excel

I'm looking for a lightweight and fast PHP Excel writer. I need to export Excel files up to 50000 rows. I've tried PHPExcel, but it is far too slow and memory-intensive.

It's only data, so formatting is not necessary.

Another requirement is that fields are often bigger than 255 characters. A lot of solutions I found don't support this.

Any suggestions?

Community
  • 1
  • 1

1 Answers1

4

You could try these projects:

http://code.google.com/p/php-excel/

http://phpexcel.codeplex.com/ (Excel 2007)

Tobias Schittkowski
  • 2,221
  • 2
  • 16
  • 25
  • 4
    Quoting the OP: "I've tried PHPExcel" – Gordon Apr 12 '11 at 13:32
  • http://code.google.com/p/php-excel/ writes XML files, and I'd like 'real' Excel files. – Henk de Slager Apr 12 '11 at 13:36
  • 1
    @Henk de Slager: Since Excel 2007, the XML files are the real Excel files. BIFF format has been legacy for four years now. A modern piece of code should import/export in the [OPC-based Office Open XML format](http://en.wikipedia.org/wiki/Office_Open_XML_file_formats). – Orbling Apr 12 '11 at 14:03