For God so loved the world, that He gave His only begotten Son, that all who believe in Him should not perish but have everlasting life
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
4.7 KiB

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2015 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 - 2015 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. /** Error reporting */
  28. error_reporting(E_ALL);
  29. ini_set('display_errors', TRUE);
  30. ini_set('display_startup_errors', TRUE);
  31. define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');
  32. date_default_timezone_set('Europe/London');
  33. /** Include PHPExcel */
  34. require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';
  35. /*
  36. After doing some test, I've got these results benchmarked
  37. for writing to Excel2007:
  38. Number of rows Seconds to generate
  39. 200 3
  40. 500 4
  41. 1000 6
  42. 2000 12
  43. 4000 36
  44. 8000 64
  45. 15000 465
  46. */
  47. // Create new PHPExcel object
  48. echo date('H:i:s') , " Create new PHPExcel object" , EOL;
  49. $objPHPExcel = new PHPExcel();
  50. // Set document properties
  51. echo date('H:i:s') , " Set properties" , EOL;
  52. $objPHPExcel->getProperties()->setCreator("Maarten Balliauw")
  53. ->setLastModifiedBy("Maarten Balliauw")
  54. ->setTitle("Office 2007 XLSX Test Document")
  55. ->setSubject("Office 2007 XLSX Test Document")
  56. ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.")
  57. ->setKeywords("office 2007 openxml php")
  58. ->setCategory("Test result file");
  59. // Create a first sheet
  60. echo date('H:i:s') , " Add data" , EOL;
  61. $objPHPExcel->setActiveSheetIndex(0);
  62. $objPHPExcel->getActiveSheet()->setCellValue('A1', "Firstname");
  63. $objPHPExcel->getActiveSheet()->setCellValue('B1', "Lastname");
  64. $objPHPExcel->getActiveSheet()->setCellValue('C1', "Phone");
  65. $objPHPExcel->getActiveSheet()->setCellValue('D1', "Fax");
  66. $objPHPExcel->getActiveSheet()->setCellValue('E1', "Is Client ?");
  67. // Hide "Phone" and "fax" column
  68. echo date('H:i:s') , " Hide 'Phone' and 'fax' columns" , EOL;
  69. $objPHPExcel->getActiveSheet()->getColumnDimension('C')->setVisible(false);
  70. $objPHPExcel->getActiveSheet()->getColumnDimension('D')->setVisible(false);
  71. // Set outline levels
  72. echo date('H:i:s') , " Set outline levels" , EOL;
  73. $objPHPExcel->getActiveSheet()->getColumnDimension('E')->setOutlineLevel(1)
  74. ->setVisible(false)
  75. ->setCollapsed(true);
  76. // Freeze panes
  77. echo date('H:i:s') , " Freeze panes" , EOL;
  78. $objPHPExcel->getActiveSheet()->freezePane('A2');
  79. // Rows to repeat at top
  80. echo date('H:i:s') , " Rows to repeat at top" , EOL;
  81. $objPHPExcel->getActiveSheet()->getPageSetup()->setRowsToRepeatAtTopByStartAndEnd(1, 1);
  82. // Add data
  83. for ($i = 2; $i <= 5000; $i++) {
  84. $objPHPExcel->getActiveSheet()->setCellValue('A' . $i, "FName $i")
  85. ->setCellValue('B' . $i, "LName $i")
  86. ->setCellValue('C' . $i, "PhoneNo $i")
  87. ->setCellValue('D' . $i, "FaxNo $i")
  88. ->setCellValue('E' . $i, true);
  89. }
  90. // Set active sheet index to the first sheet, so Excel opens this as the first sheet
  91. $objPHPExcel->setActiveSheetIndex(0);
  92. // Save Excel 95 file
  93. echo date('H:i:s') , " Write to Excel5 format" , EOL;
  94. $callStartTime = microtime(true);
  95. $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
  96. $objWriter->save(str_replace('.php', '.xls', __FILE__));
  97. $callEndTime = microtime(true);
  98. $callTime = $callEndTime - $callStartTime;
  99. echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
  100. echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
  101. // Echo memory usage
  102. echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
  103. // Echo memory peak usage
  104. echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
  105. // Echo done
  106. echo date('H:i:s') , " Done writing file" , EOL;
  107. echo 'File has been created in ' , getcwd() , EOL;