优惠券订单及其他脚本

10autofilter.php 7.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. // 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. // Create the worksheet
  48. echo date('H:i:s').' Add data'.EOL;
  49. $objPHPExcel->setActiveSheetIndex(0);
  50. $objPHPExcel->getActiveSheet()->setCellValue('A1', 'Year')
  51. ->setCellValue('B1', 'Quarter')
  52. ->setCellValue('C1', 'Country')
  53. ->setCellValue('D1', 'Sales');
  54. $dataArray = array(array('2010', 'Q1', 'United States', 790),
  55. array('2010', 'Q2', 'United States', 730),
  56. array('2010', 'Q3', 'United States', 860),
  57. array('2010', 'Q4', 'United States', 850),
  58. array('2011', 'Q1', 'United States', 800),
  59. array('2011', 'Q2', 'United States', 700),
  60. array('2011', 'Q3', 'United States', 900),
  61. array('2011', 'Q4', 'United States', 950),
  62. array('2010', 'Q1', 'Belgium', 380),
  63. array('2010', 'Q2', 'Belgium', 390),
  64. array('2010', 'Q3', 'Belgium', 420),
  65. array('2010', 'Q4', 'Belgium', 460),
  66. array('2011', 'Q1', 'Belgium', 400),
  67. array('2011', 'Q2', 'Belgium', 350),
  68. array('2011', 'Q3', 'Belgium', 450),
  69. array('2011', 'Q4', 'Belgium', 500),
  70. array('2010', 'Q1', 'UK', 690),
  71. array('2010', 'Q2', 'UK', 610),
  72. array('2010', 'Q3', 'UK', 620),
  73. array('2010', 'Q4', 'UK', 600),
  74. array('2011', 'Q1', 'UK', 720),
  75. array('2011', 'Q2', 'UK', 650),
  76. array('2011', 'Q3', 'UK', 580),
  77. array('2011', 'Q4', 'UK', 510),
  78. array('2010', 'Q1', 'France', 510),
  79. array('2010', 'Q2', 'France', 490),
  80. array('2010', 'Q3', 'France', 460),
  81. array('2010', 'Q4', 'France', 590),
  82. array('2011', 'Q1', 'France', 620),
  83. array('2011', 'Q2', 'France', 650),
  84. array('2011', 'Q3', 'France', 415),
  85. array('2011', 'Q4', 'France', 570),
  86. array('2010', 'Q1', 'Germany', 720),
  87. array('2010', 'Q2', 'Germany', 680),
  88. array('2010', 'Q3', 'Germany', 640),
  89. array('2010', 'Q4', 'Germany', 660),
  90. array('2011', 'Q1', 'Germany', 680),
  91. array('2011', 'Q2', 'Germany', 620),
  92. array('2011', 'Q3', 'Germany', 710),
  93. array('2011', 'Q4', 'Germany', 690),
  94. array('2010', 'Q1', 'Spain', 510),
  95. array('2010', 'Q2', 'Spain', 490),
  96. array('2010', 'Q3', 'Spain', 470),
  97. array('2010', 'Q4', 'Spain', 420),
  98. array('2011', 'Q1', 'Spain', 460),
  99. array('2011', 'Q2', 'Spain', 390),
  100. array('2011', 'Q3', 'Spain', 430),
  101. array('2011', 'Q4', 'Spain', 415),
  102. array('2010', 'Q1', 'Italy', 440),
  103. array('2010', 'Q2', 'Italy', 410),
  104. array('2010', 'Q3', 'Italy', 420),
  105. array('2010', 'Q4', 'Italy', 450),
  106. array('2011', 'Q1', 'Italy', 430),
  107. array('2011', 'Q2', 'Italy', 370),
  108. array('2011', 'Q3', 'Italy', 350),
  109. array('2011', 'Q4', 'Italy', 335),
  110. );
  111. $objPHPExcel->getActiveSheet()->fromArray($dataArray, NULL, 'A2');
  112. // Set title row bold
  113. echo date('H:i:s').' Set title row bold'.EOL;
  114. $objPHPExcel->getActiveSheet()->getStyle('A1:D1')->getFont()->setBold(true);
  115. // Set autofilter
  116. echo date('H:i:s').' Set autofilter'.EOL;
  117. // Always include the complete filter range!
  118. // Excel does support setting only the caption
  119. // row, but that's not a best practise...
  120. $objPHPExcel->getActiveSheet()->setAutoFilter($objPHPExcel->getActiveSheet()->calculateWorksheetDimension());
  121. // Set active sheet index to the first sheet, so Excel opens this as the first sheet
  122. $objPHPExcel->setActiveSheetIndex(0);
  123. // Save Excel 2007 file
  124. echo date('H:i:s') , " Write to Excel2007 format" , EOL;
  125. $callStartTime = microtime(true);
  126. $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
  127. $objWriter->save(str_replace('.php', '.xlsx', __FILE__));
  128. $callEndTime = microtime(true);
  129. $callTime = $callEndTime - $callStartTime;
  130. echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
  131. echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
  132. // Echo memory usage
  133. echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
  134. // Save Excel 95 file
  135. echo date('H:i:s') , " Write to Excel5 format" , EOL;
  136. $callStartTime = microtime(true);
  137. $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
  138. $objWriter->save(str_replace('.php', '.xls', __FILE__));
  139. $callEndTime = microtime(true);
  140. $callTime = $callEndTime - $callStartTime;
  141. echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
  142. echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
  143. // Echo memory usage
  144. echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
  145. // Echo memory peak usage
  146. echo date('H:i:s').' Peak memory usage: '.(memory_get_peak_usage(true) / 1024 / 1024).' MB'.EOL;
  147. // Echo done
  148. echo date('H:i:s').' Done writing files'.EOL;
  149. echo 'Files have been created in ' , getcwd() , EOL;