PageRenderTime 25ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/vendor/phpoffice/phpexcel/Examples/01pharSimple.php

https://gitlab.com/Zinnurain/destination_finder_beta
PHP | 112 lines | 50 code | 23 blank | 39 comment | 2 complexity | 50969df01ce182daf1d9842e5f816cc0 MD5 | raw file
  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (C) 2006 - 2014 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 - 2014 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. date_default_timezone_set('Europe/London');
  32. define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');
  33. /** Include PHPExcel */
  34. require_once '../Build/PHPExcel.phar';
  35. // Create new PHPExcel object
  36. echo date('H:i:s') , " Create new PHPExcel object" , EOL;
  37. $objPHPExcel = new PHPExcel();
  38. // Set document properties
  39. echo date('H:i:s') , " Set document properties" , EOL;
  40. $objPHPExcel->getProperties()->setCreator("Maarten Balliauw")
  41. ->setLastModifiedBy("Maarten Balliauw")
  42. ->setTitle("PHPExcel Test Document")
  43. ->setSubject("PHPExcel Test Document")
  44. ->setDescription("Test document for PHPExcel, generated using PHP classes.")
  45. ->setKeywords("office PHPExcel php")
  46. ->setCategory("Test result file");
  47. // Add some data
  48. echo date('H:i:s') , " Add some data" , EOL;
  49. $objPHPExcel->setActiveSheetIndex(0)
  50. ->setCellValue('A1', 'Hello')
  51. ->setCellValue('B2', 'world!')
  52. ->setCellValue('C1', 'Hello')
  53. ->setCellValue('D2', 'world!');
  54. // Miscellaneous glyphs, UTF-8
  55. $objPHPExcel->setActiveSheetIndex(0)
  56. ->setCellValue('A4', 'Miscellaneous glyphs')
  57. ->setCellValue('A5', 'éàèùâêîôûëïüÿäöüç');
  58. // Rename worksheet
  59. echo date('H:i:s') , " Rename worksheet" , EOL;
  60. $objPHPExcel->getActiveSheet()->setTitle('Simple');
  61. // Set active sheet index to the first sheet, so Excel opens this as the first sheet
  62. $objPHPExcel->setActiveSheetIndex(0);
  63. // Save Excel 2007 file
  64. echo date('H:i:s') , " Write to Excel2007 format" , EOL;
  65. $callStartTime = microtime(true);
  66. $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
  67. $objWriter->save(str_replace('.php', '.xlsx', __FILE__));
  68. $callEndTime = microtime(true);
  69. $callTime = $callEndTime - $callStartTime;
  70. echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
  71. echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
  72. // Echo memory usage
  73. echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
  74. // Save Excel5 file
  75. echo date('H:i:s') , " Write to Excel5 format" , EOL;
  76. $callStartTime = microtime(true);
  77. $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
  78. $objWriter->save(str_replace('.php', '.xls', __FILE__));
  79. $callEndTime = microtime(true);
  80. $callTime = $callEndTime - $callStartTime;
  81. echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
  82. echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
  83. // Echo memory usage
  84. echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
  85. // Echo memory peak usage
  86. echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
  87. // Echo done
  88. echo date('H:i:s') , " Done writing files" , EOL;
  89. echo 'Files have been created in ' , getcwd() , EOL;