06largescale.php 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (C) 2006 - 2008 PHPExcel
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel
  23. * @copyright Copyright (c) 2006 - 2008 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/lgpl.txt LGPL
  25. * @version 1.6.0, 2008-02-14
  26. */
  27. /* Modified by Bertrand Zuchuat */
  28. require_once 'symfony.inc.php';
  29. /*
  30. After doing some test, I've got these results benchmarked
  31. for writing to Excel2007:
  32. Number of rows Seconds to generate
  33. 200 3
  34. 500 4
  35. 1000 6
  36. 2000 12
  37. 4000 36
  38. 8000 64
  39. 15000 465
  40. */
  41. // Create new PHPExcel object
  42. echo date('H:i:s') . " Create new PHPExcel object\n";
  43. $objPHPExcel = new sfPhpExcel();
  44. // Set properties
  45. echo date('H:i:s') . " Set properties\n";
  46. $objPHPExcel->getProperties()->setCreator("Maarten Balliauw");
  47. $objPHPExcel->getProperties()->setLastModifiedBy("Maarten Balliauw");
  48. $objPHPExcel->getProperties()->setTitle("Office 2007 XLSX Test Document");
  49. $objPHPExcel->getProperties()->setSubject("Office 2007 XLSX Test Document");
  50. $objPHPExcel->getProperties()->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.");
  51. $objPHPExcel->getProperties()->setKeywords("office 2007 openxml php");
  52. $objPHPExcel->getProperties()->setCategory("Test result file");
  53. // Create a first sheet
  54. echo date('H:i:s') . " Add data\n";
  55. $objPHPExcel->setActiveSheetIndex(0);
  56. $objPHPExcel->getActiveSheet()->setCellValue('A1', "Firstname");
  57. $objPHPExcel->getActiveSheet()->setCellValue('B1', "Lastname");
  58. $objPHPExcel->getActiveSheet()->setCellValue('C1', "Phone");
  59. $objPHPExcel->getActiveSheet()->setCellValue('D1', "Fax");
  60. $objPHPExcel->getActiveSheet()->setCellValue('E1', "Is Client ?");
  61. // Hide "Phone" and "fax" column
  62. echo date('H:i:s') . " Hide \"Phone\" and \"fax\" column\n";
  63. $objPHPExcel->getActiveSheet()->getColumnDimension('C')->setVisible(false);
  64. $objPHPExcel->getActiveSheet()->getColumnDimension('D')->setVisible(false);
  65. // Set outline levels
  66. echo date('H:i:s') . " Set outline levels\n";
  67. $objPHPExcel->getActiveSheet()->getColumnDimension('E')->setOutlineLevel(1);
  68. $objPHPExcel->getActiveSheet()->getColumnDimension('E')->setVisible(false);
  69. $objPHPExcel->getActiveSheet()->getColumnDimension('E')->setCollapsed(true);
  70. // Freeze panes
  71. echo date('H:i:s') . " Freeze panes\n";
  72. $objPHPExcel->getActiveSheet()->freezePane('A2');
  73. // Rows to repeat at top
  74. echo date('H:i:s') . " Rows to repeat at top\n";
  75. $objPHPExcel->getActiveSheet()->getPageSetup()->setRowsToRepeatAtTopByStartAndEnd(1, 1);
  76. // Add data
  77. for ($i = 2; $i <= 5000; $i++) {
  78. $objPHPExcel->getActiveSheet()->setCellValue('A' . $i, "FName $i");
  79. $objPHPExcel->getActiveSheet()->setCellValue('B' . $i, "LName $i");
  80. $objPHPExcel->getActiveSheet()->setCellValue('C' . $i, "PhoneNo $i");
  81. $objPHPExcel->getActiveSheet()->setCellValue('D' . $i, "FaxNo $i");
  82. $objPHPExcel->getActiveSheet()->setCellValue('E' . $i, true);
  83. }
  84. // Set active sheet index to the first sheet, so Excel opens this as the first sheet
  85. $objPHPExcel->setActiveSheetIndex(0);
  86. // Save Excel 2007 file
  87. echo date('H:i:s') . " Write to Excel2007 format\n";
  88. $objWriter = new PHPExcel_Writer_Excel2007($objPHPExcel);
  89. $objWriter->save(str_replace('.php', '.xlsx', __FILE__));
  90. // Echo memory peak usage
  91. echo date('H:i:s') . " Peak memory usage: " . (memory_get_peak_usage(true) / 1024 / 1024) . " MB\r\n";
  92. // Echo done
  93. echo date('H:i:s') . " Done writing file.\r\n";