42richText.php 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  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 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. // Add some data
  48. echo date('H:i:s') , " Add some data" , EOL;
  49. $html1 = '<font color="#0000ff">
  50. <h1 align="center">My very first example of rich text<br />generated from html markup</h1>
  51. <p>
  52. <font size="14" COLOR="rgb(0,255,128)">
  53. <b>This block</b> contains an <i>italicized</i> word;
  54. while this block uses an <u>underline</u>.
  55. </font>
  56. </p>
  57. <p align="right"><font size="9" color="red">
  58. I want to eat <ins><del>healthy food</del> <strong>pizza</strong></ins>.
  59. </font>
  60. ';
  61. $html2 = '<p>
  62. <font color="#ff0000">
  63. 100&deg;C is a hot temperature
  64. </font>
  65. <br>
  66. <font color="#0080ff">
  67. 10&deg;F is cold
  68. </font>
  69. </p>';
  70. $html3 = '2<sup>3</sup> equals 8';
  71. $html4 = 'H<sub>2</sub>SO<sub>4</sub> is the chemical formula for Sulphuric acid';
  72. $html5 = '<strong>bold</strong>, <em>italic</em>, <strong><em>bold+italic</em></strong>';
  73. $wizard = new PHPExcel_Helper_HTML;
  74. $richText = $wizard->toRichTextObject($html1);
  75. $objPHPExcel->setActiveSheetIndex(0)
  76. ->setCellValue('A1', $richText);
  77. $objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(48);
  78. $objPHPExcel->getActiveSheet()->getRowDimension(1)->setRowHeight(-1);
  79. $objPHPExcel->getActiveSheet()->getStyle('A1')
  80. ->getAlignment()
  81. ->setWrapText(true);
  82. $richText = $wizard->toRichTextObject($html2);
  83. $objPHPExcel->getActiveSheet()
  84. ->setCellValue('A2', $richText);
  85. $objPHPExcel->getActiveSheet()->getRowDimension(1)->setRowHeight(-1);
  86. $objPHPExcel->getActiveSheet()->getStyle('A2')
  87. ->getAlignment()
  88. ->setWrapText(true);
  89. $objPHPExcel->getActiveSheet()
  90. ->setCellValue('A3', $wizard->toRichTextObject($html3));
  91. $objPHPExcel->getActiveSheet()
  92. ->setCellValue('A4', $wizard->toRichTextObject($html4));
  93. $objPHPExcel->getActiveSheet()
  94. ->setCellValue('A5', $wizard->toRichTextObject($html5));
  95. // Rename worksheet
  96. echo date('H:i:s') , " Rename worksheet" , EOL;
  97. $objPHPExcel->getActiveSheet()->setTitle('Simple');
  98. // Set active sheet index to the first sheet, so Excel opens this as the first sheet
  99. $objPHPExcel->setActiveSheetIndex(0);
  100. // Save Excel 2007 file
  101. echo date('H:i:s') , " Write to Excel2007 format" , EOL;
  102. $callStartTime = microtime(true);
  103. $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
  104. $objWriter->save(str_replace('.php', '.xlsx', __FILE__));
  105. $callEndTime = microtime(true);
  106. $callTime = $callEndTime - $callStartTime;
  107. echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
  108. echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
  109. // Echo memory usage
  110. echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
  111. // Save Excel 95 file
  112. echo date('H:i:s') , " Write to Excel5 format" , EOL;
  113. $callStartTime = microtime(true);
  114. $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel5');
  115. $objWriter->save(str_replace('.php', '.xls', __FILE__));
  116. $callEndTime = microtime(true);
  117. $callTime = $callEndTime - $callStartTime;
  118. echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
  119. echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
  120. // Echo memory usage
  121. echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
  122. // Echo memory peak usage
  123. echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
  124. // Echo done
  125. echo date('H:i:s') , " Done writing files" , EOL;
  126. echo 'Files have been created in ' , getcwd() , EOL;