Is it populating the worksheet? or saving? that you find too slow?
How are you populating the spreadsheet with the data?
- Using the
fromArray()
method is more efficient than populating each individual cell, especially if you use the Advanced Value Binder to set cell datatypes automatically.
If you're setting values for every individual cell in a sheet using
$objPHPExcel->getActiveSheet()->setCellValue('A1',$x);
$objPHPExcel->getActiveSheet()->setCellValue('B1',$y);
use
$sheet = $objPHPExcel->getActiveSheet();
$sheet->setCellValue('A1',$x);
$sheet->setCellValue('B1',$y);
so that you're only accessing the getActiveSheet()
method once;
or take advantage of the fluent interface to set multiple cells with only a single call to $objPHPExcel->getActiveSheet()
$objPHPExcel->getActiveSheet()->setCellValue('A1',$x)
->setCellValue('B1',$y);
You've commented on applying styles to ranges of cells:
- You also have the option to use
applyFromArray()
to set a whole variety of style settings in one go.
- It's a lot more efficient if you can apply styles to a column or a row rather than simply to a range
If you're using formulae in your workbook, when saving:
Those are just a few hints to help boost performance, and there's plenty more suggested in the forum threads. They won't all necessarily help, too much depends on your specific workbook to give any absolutes, but you should be able to improve that slow speed. Even the little notebook that I use for development can write a 3 worksheet, 20 column, 2,000 row Excel 2007 file faster than your production server.
EDIT
If it was possible to simply improve the speed of PHPExcel itself, I'd have done so long ago. As it is, I'm constantly performance testing to see how its speed can be improved. If you want faster speeds than PHPExcel itself can give, then there's a list of alternative libraries here.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…