| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | <?php | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * PHPExcel | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2015-05-02 22:50:37 +00:00
										 |  |  |  * Copyright (c) 2006 - 2015 PHPExcel | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This library is free software; you can redistribute it and/or | 
					
						
							|  |  |  |  * modify it under the terms of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License as published by the Free Software Foundation; either | 
					
						
							|  |  |  |  * version 2.1 of the License, or (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This library is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
					
						
							|  |  |  |  * Lesser General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Lesser General Public | 
					
						
							|  |  |  |  * License along with this library; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * @category   PHPExcel | 
					
						
							|  |  |  |  * @package    PHPExcel | 
					
						
							| 
									
										
										
										
											2016-08-16 13:02:03 +00:00
										 |  |  |  * @copyright  Copyright (c) 2006 - 2015 PHPExcel (https://github.com/PHPOffice/PhpSpreadsheet) | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  |  * @license    http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt	LGPL | 
					
						
							|  |  |  |  * @version    ##VERSION##, ##DATE##
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** Error reporting */ | 
					
						
							|  |  |  | error_reporting(E_ALL); | 
					
						
							|  |  |  | ini_set('display_errors', TRUE); | 
					
						
							|  |  |  | ini_set('display_startup_errors', TRUE); | 
					
						
							|  |  |  | date_default_timezone_set('Europe/London'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** Include PHPExcel */ | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | require_once dirname(__FILE__) . '/../src/Bootstrap.php'; | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Create new PHPExcel object
 | 
					
						
							|  |  |  | echo date('H:i:s') , " Create new PHPExcel object" , EOL; | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $objPHPExcel = new \PHPExcel\Spreadsheet(); | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Set document properties
 | 
					
						
							|  |  |  | echo date('H:i:s') , " Set document properties" , EOL; | 
					
						
							|  |  |  | $objPHPExcel->getProperties()->setCreator("Maarten Balliauw") | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | 	->setLastModifiedBy("Maarten Balliauw") | 
					
						
							|  |  |  | 	->setTitle("PHPExcel Test Document") | 
					
						
							|  |  |  | 	->setSubject("PHPExcel Test Document") | 
					
						
							|  |  |  | 	->setDescription("Test document for PHPExcel, generated using PHP classes.") | 
					
						
							|  |  |  | 	->setKeywords("office PHPExcel php") | 
					
						
							|  |  |  | 	->setCategory("Test result file"); | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Add some data
 | 
					
						
							|  |  |  | echo date('H:i:s') , " Add some data" , EOL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $html1 = '<font color="#0000ff"> | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | <h1 align="center">My very first example of rich text<br />generated from html markup</h1> | 
					
						
							|  |  |  | <p> | 
					
						
							| 
									
										
										
										
											2014-12-28 19:08:33 +00:00
										 |  |  | <font size="14" COLOR="rgb(0,255,128)"> | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | <b>This block</b> contains an <i>italicized</i> word; | 
					
						
							|  |  |  | while this block uses an <u>underline</u>. | 
					
						
							|  |  |  | </font> | 
					
						
							|  |  |  | </p> | 
					
						
							| 
									
										
										
										
											2014-12-28 19:08:33 +00:00
										 |  |  | <p align="right"><font size="9" color="red"> | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | I want to eat <ins><del>healthy food</del> <strong>pizza</strong></ins>. | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | </font> | 
					
						
							|  |  |  | '; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $html2 = '<p> | 
					
						
							| 
									
										
										
										
											2014-12-28 19:08:33 +00:00
										 |  |  | <font color="#ff0000"> | 
					
						
							|  |  |  |     100°C is a hot temperature | 
					
						
							|  |  |  | </font> | 
					
						
							|  |  |  | <br> | 
					
						
							|  |  |  | <font color="#0080ff"> | 
					
						
							|  |  |  |     10°F is cold | 
					
						
							|  |  |  | </font> | 
					
						
							|  |  |  | </p>'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $html3 = '2<sup>3</sup> equals 8'; | 
					
						
							| 
									
										
										
										
											2015-01-13 23:44:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $html4 = 'H<sub>2</sub>SO<sub>4</sub> is the chemical formula for Sulphuric acid'; | 
					
						
							| 
									
										
										
										
											2015-01-13 23:44:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $html5 = '<strong>bold</strong>, <em>italic</em>, <strong><em>bold+italic</em></strong>'; | 
					
						
							| 
									
										
										
										
											2015-01-13 23:44:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $wizard = new \PHPExcel\Helper\HTML; | 
					
						
							| 
									
										
										
										
											2014-12-28 19:08:33 +00:00
										 |  |  | $richText = $wizard->toRichTextObject($html1); | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $objPHPExcel->getActiveSheet() | 
					
						
							| 
									
										
										
										
											2015-01-13 23:44:38 +00:00
										 |  |  |     ->setCellValue('A1', $richText); | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $objPHPExcel->getActiveSheet() | 
					
						
							|  |  |  |     ->getColumnDimension('A') | 
					
						
							|  |  |  |     ->setWidth(48); | 
					
						
							|  |  |  | $objPHPExcel->getActiveSheet() | 
					
						
							|  |  |  |     ->getRowDimension(1) | 
					
						
							|  |  |  |     ->setRowHeight(-1); | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | $objPHPExcel->getActiveSheet()->getStyle('A1') | 
					
						
							|  |  |  |     ->getAlignment() | 
					
						
							|  |  |  |     ->setWrapText(true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-28 19:08:33 +00:00
										 |  |  | $richText = $wizard->toRichTextObject($html2); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $objPHPExcel->getActiveSheet() | 
					
						
							| 
									
										
										
										
											2015-01-13 23:44:38 +00:00
										 |  |  |     ->setCellValue('A2', $richText); | 
					
						
							| 
									
										
										
										
											2014-12-28 19:08:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $objPHPExcel->getActiveSheet() | 
					
						
							|  |  |  |     ->getRowDimension(1) | 
					
						
							|  |  |  |     ->setRowHeight(-1); | 
					
						
							|  |  |  | $objPHPExcel->getActiveSheet() | 
					
						
							|  |  |  |     ->getStyle('A2') | 
					
						
							| 
									
										
										
										
											2014-12-28 19:08:33 +00:00
										 |  |  |     ->getAlignment() | 
					
						
							|  |  |  |     ->setWrapText(true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-13 23:44:38 +00:00
										 |  |  | $objPHPExcel->setActiveSheetIndex(0) | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  |     ->setCellValue('A3', $wizard->toRichTextObject($html3)); | 
					
						
							| 
									
										
										
										
											2015-01-13 23:44:38 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | $objPHPExcel->setActiveSheetIndex(0) | 
					
						
							|  |  |  |     ->setCellValue('A4', $wizard->toRichTextObject($html4)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $objPHPExcel->setActiveSheetIndex(0) | 
					
						
							|  |  |  |     ->setCellValue('A5', $wizard->toRichTextObject($html5)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Rename worksheet
 | 
					
						
							|  |  |  | echo date('H:i:s') , " Rename worksheet" , EOL; | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $objPHPExcel->getActiveSheet() | 
					
						
							|  |  |  |     ->setTitle('Rich Text Examples'); | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Set active sheet index to the first sheet, so Excel opens this as the first sheet
 | 
					
						
							|  |  |  | $objPHPExcel->setActiveSheetIndex(0); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Save Excel 2007 file
 | 
					
						
							|  |  |  | echo date('H:i:s') , " Write to Excel2007 format" , EOL; | 
					
						
							|  |  |  | $callStartTime = microtime(true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $objWriter = \PHPExcel\IOFactory::createWriter($objPHPExcel, 'Excel2007'); | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | $objWriter->save(str_replace('.php', '.xlsx', __FILE__)); | 
					
						
							|  |  |  | $callEndTime = microtime(true); | 
					
						
							|  |  |  | $callTime = $callEndTime - $callStartTime; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; | 
					
						
							|  |  |  | echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; | 
					
						
							|  |  |  | // Echo memory usage
 | 
					
						
							|  |  |  | echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Save Excel 95 file
 | 
					
						
							|  |  |  | echo date('H:i:s') , " Write to Excel5 format" , EOL; | 
					
						
							|  |  |  | $callStartTime = microtime(true); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 22:23:20 +00:00
										 |  |  | $objWriter = \PHPExcel\IOFactory::createWriter($objPHPExcel, 'Excel5'); | 
					
						
							| 
									
										
										
										
											2014-12-27 23:48:24 +00:00
										 |  |  | $objWriter->save(str_replace('.php', '.xls', __FILE__)); | 
					
						
							|  |  |  | $callEndTime = microtime(true); | 
					
						
							|  |  |  | $callTime = $callEndTime - $callStartTime; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL; | 
					
						
							|  |  |  | echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL; | 
					
						
							|  |  |  | // Echo memory usage
 | 
					
						
							|  |  |  | echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Echo memory peak usage
 | 
					
						
							|  |  |  | echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Echo done
 | 
					
						
							|  |  |  | echo date('H:i:s') , " Done writing files" , EOL; | 
					
						
							|  |  |  | echo 'Files have been created in ' , getcwd() , EOL; |