🚀 PHP Extension for creating and reader XLSX files.
fork from : https://github.com/viest/php-ext-xlswriter.git

Remi Collet 3a075e77c6 add missing init 5 rokov pred
backup 56f20cf67c windows config: 6 rokov pred
ide-helper 360570765e update IDE helper 5 rokov pred
include d9102a9378 Feat: nextCellCallback with data type 5 rokov pred
kernel 3a075e77c6 add missing init 5 rokov pred
library 7e23816db5 Feat(Read): load xlsx file 5 rokov pred
resource 79b2d995cb readme update 5 rokov pred
tests d9102a9378 Feat: nextCellCallback with data type 5 rokov pred
travis 1b8478cef9 Trim trailing whitespace 6 rokov pred
.appveyor.yml 0fa7e207a8 config.m4 5 rokov pred
.gitignore b1a74ec0bf Style(Config.w32): Format 6 rokov pred
.gitmodules 7e23816db5 Feat(Read): load xlsx file 5 rokov pred
.travis.yml 5176a92fc2 Test: read cell by callback 5 rokov pred
CREDITS e8b993e214 project init 7 rokov pred
LICENSE 8b517d734c License BSD 7 rokov pred
README.md db489f64f1 update doc 5 rokov pred
README_zh.md db489f64f1 update doc 5 rokov pred
config.m4 8139123b63 allow to build with system libxlsxio 5 rokov pred
config.w32 2fca01c326 Fix(win32): include 6 rokov pred
excel.php 74a8faea12 add: tests 7 rokov pred
package.xml 3b9c0be450 1.2.9 5 rokov pred
php_xlswriter.h 3b9c0be450 1.2.9 5 rokov pred
xlswriter.c feb5b1a4c9 report libxlsxio in phpinfo 5 rokov pred

README.md

php-excel

Build Status Build status

Why use xlswriter

Please refer to the image below. PHPExcel has been unable to work properly for memory reasons at 40,000 and 100000 points, but it can be resolved by modifying the ini configuration, but the time may take longer to complete the work;

php-excel

xlswriter is a PHP C Extension that can be used to write text, numbers, formulas and hyperlinks to multiple worksheets in an Excel 2007+ XLSX file. It supports features such as:

Writer
  • 100% compatible Excel XLSX files.
  • Full Excel formatting.
  • Merged cells.
  • Defined names.
  • Autofilters.
  • Charts.
  • Data validation and drop down lists.
  • Worksheet PNG/JPEG images.
  • Memory optimization mode for writing large files.
  • Works on Linux, FreeBSD, OpenBSD, OS X, Windows.
  • Compiles for 32 and 64 bit.
  • FreeBSD License.
  • The only dependency is on zlib.
Reader
  • Full read data
  • Cursor read data
  • Read by data type

Benchmark

Test environment: Macbook Pro 13 inch, Intel Core i5, 16GB 2133MHz LPDDR3 Memory, 128GB SSD Storage.

Export

Two memory modes export 1 million rows of data (27 columns, data is string)

  • Normal mode: only 29S is needed, and the memory only needs 2083MB;
  • Fixed memory mode: only need 52S, memory only needs <1MB;
Import

1 million rows of data (1 columns, data is inter)

  • Full mode: Just 3S, the memory is only 558MB;
  • Cursor mode: Just 2.8S, memory is only <1MB;

Documents

文档|Documents

PECL Repository

pecl

Exchange group

License

FreeBSD license