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.

128 lines
4.8 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. $cacheMethod = PHPExcel_CachedObjectStorageFactory::cache_in_memory_gzip;
  36. if (!PHPExcel_Settings::setCacheStorageMethod($cacheMethod)) {
  37. die($cacheMethod . " caching method is not available" . EOL);
  38. }
  39. echo date('H:i:s') , " Enable Cell Caching using " , $cacheMethod , " method" , EOL;
  40. // Create new PHPExcel object
  41. echo date('H:i:s') , " Create new PHPExcel object" , EOL;
  42. $objPHPExcel = new PHPExcel();
  43. // Set document properties
  44. echo date('H:i:s') , " Set properties" , EOL;
  45. $objPHPExcel->getProperties()->setCreator("Maarten Balliauw")
  46. ->setLastModifiedBy("Maarten Balliauw")
  47. ->setTitle("Office 2007 XLSX Test Document")
  48. ->setSubject("Office 2007 XLSX Test Document")
  49. ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.")
  50. ->setKeywords("office 2007 openxml php")
  51. ->setCategory("Test result file");
  52. // Create a first sheet
  53. echo date('H:i:s') , " Add data" , EOL;
  54. $objPHPExcel->setActiveSheetIndex(0);
  55. $objPHPExcel->getActiveSheet()->setCellValue('A1', "Firstname");
  56. $objPHPExcel->getActiveSheet()->setCellValue('B1', "Lastname");
  57. $objPHPExcel->getActiveSheet()->setCellValue('C1', "Phone");
  58. $objPHPExcel->getActiveSheet()->setCellValue('D1', "Fax");
  59. $objPHPExcel->getActiveSheet()->setCellValue('E1', "Is Client ?");
  60. // Hide "Phone" and "fax" column
  61. echo date('H:i:s') , " Hide 'Phone' and 'fax' columns" , EOL;
  62. $objPHPExcel->getActiveSheet()->getColumnDimension('C')->setVisible(false);
  63. $objPHPExcel->getActiveSheet()->getColumnDimension('D')->setVisible(false);
  64. // Set outline levels
  65. echo date('H:i:s') , " Set outline levels" , EOL;
  66. $objPHPExcel->getActiveSheet()->getColumnDimension('E')->setOutlineLevel(1)
  67. ->setVisible(false)
  68. ->setCollapsed(true);
  69. // Freeze panes
  70. echo date('H:i:s') , " Freeze panes" , EOL;
  71. $objPHPExcel->getActiveSheet()->freezePane('A2');
  72. // Rows to repeat at top
  73. echo date('H:i:s') , " Rows to repeat at top" , EOL;
  74. $objPHPExcel->getActiveSheet()->getPageSetup()->setRowsToRepeatAtTopByStartAndEnd(1, 1);
  75. // Add data
  76. for ($i = 2; $i <= 5000; $i++) {
  77. $objPHPExcel->getActiveSheet()->setCellValue('A' . $i, "FName $i")
  78. ->setCellValue('B' . $i, "LName $i")
  79. ->setCellValue('C' . $i, "PhoneNo $i")
  80. ->setCellValue('D' . $i, "FaxNo $i")
  81. ->setCellValue('E' . $i, true);
  82. }
  83. // Set active sheet index to the first sheet, so Excel opens this as the first sheet
  84. $objPHPExcel->setActiveSheetIndex(0);
  85. // Save Excel 2007 file
  86. echo date('H:i:s') , " Write to Excel2007 format" , EOL;
  87. $callStartTime = microtime(true);
  88. $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
  89. $objWriter->save(str_replace('.php', '.xlsx', __FILE__));
  90. $callEndTime = microtime(true);
  91. $callTime = $callEndTime - $callStartTime;
  92. echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
  93. echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
  94. // Echo memory usage
  95. echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
  96. // Echo memory peak usage
  97. echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
  98. // Echo done
  99. echo date('H:i:s') , " Done writing file" , EOL;
  100. echo 'File has been created in ' , getcwd() , EOL;