About

Avatar von Martin Brotzeller
  • Performant Handling of Excel Files in PHP

    When you look at Excel solutions for PHP, the first thing you find is PHPExcel, digging a little bit further lets you find libXl. The prior is a pure PHP solution, the latter a native library for a couple of operating systems. There is a PHP extension that exposes this library to PHP, so you…

  • Import and export data using PHPExcel

    There’s a newer version of this article topic available (2014). Please read on at Performant handling of Excel files in PHP. A few weeks ago I had to read and write Excel files of the format BIFF8 (Excel 97), because the customer did not accept the workaround of exporting data to CSV. PEAR’s Spreadsheet_Excel_Writer combined…