ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
42richText.php
Go to the documentation of this file.
1<?php
29error_reporting(E_ALL);
30ini_set('display_errors', TRUE);
31ini_set('display_startup_errors', TRUE);
32date_default_timezone_set('Europe/London');
33
34define('EOL',(PHP_SAPI == 'cli') ? PHP_EOL : '<br />');
35
37require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';
38
39
40// Create new PHPExcel object
41echo date('H:i:s') , " Create new PHPExcel object" , EOL;
43
44// Set document properties
45echo date('H:i:s') , " Set document properties" , EOL;
46$objPHPExcel->getProperties()->setCreator("Maarten Balliauw")
47 ->setLastModifiedBy("Maarten Balliauw")
48 ->setTitle("PHPExcel Test Document")
49 ->setSubject("PHPExcel Test Document")
50 ->setDescription("Test document for PHPExcel, generated using PHP classes.")
51 ->setKeywords("office PHPExcel php")
52 ->setCategory("Test result file");
53
54
55// Add some data
56echo date('H:i:s') , " Add some data" , EOL;
57
58$html1='<font color="#0000ff">
59<h1 align="center">My very first example of rich text<br />generated from html markup</h1>
60<p>
61<font size="14" COLOR="rgb(0,255,128)">
62<b>This block</b> contains an <i>italicized</i> word;
63while this block uses an <u>underline</u>.
64</font>
65</p>
66<p align="right"><font size="9" color="red">
67I want to eat <ins><del>healthy food</del><strong>pizza</strong></ins>.
68</font>
69';
70
72<font color="#ff0000">
73 100&deg;C is a hot temperature
74</font>
75<br>
76<font color="#0080ff">
77 10&deg;F is cold
78</font>
79</p>';
80
81$html3='2<sup>3</sup> equals 8';
82
83$html4='H<sub>2</sub>SO<sub>4</sub> is the chemical formula for Sulphuric acid';
84
85
87$richText = $wizard->toRichTextObject($html1);
88
89$objPHPExcel->setActiveSheetIndex(0)
90 ->setCellValue('A1', $richText);
91
92$objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(48);
93$objPHPExcel->getActiveSheet()->getRowDimension(1)->setRowHeight(-1);
94$objPHPExcel->getActiveSheet()->getStyle('A1')
95 ->getAlignment()
96 ->setWrapText(true);
97
98$richText = $wizard->toRichTextObject($html2);
99
100$objPHPExcel->setActiveSheetIndex(0)
101 ->setCellValue('A2', $richText);
102
103$objPHPExcel->getActiveSheet()->getRowDimension(1)->setRowHeight(-1);
104$objPHPExcel->getActiveSheet()->getStyle('A2')
105 ->getAlignment()
106 ->setWrapText(true);
107
108$objPHPExcel->setActiveSheetIndex(0)
109 ->setCellValue('A3', $wizard->toRichTextObject($html3));
110
111$objPHPExcel->setActiveSheetIndex(0)
112 ->setCellValue('A4', $wizard->toRichTextObject($html4));
113
114
115// Rename worksheet
116echo date('H:i:s') , " Rename worksheet" , EOL;
117$objPHPExcel->getActiveSheet()->setTitle('Simple');
118
119
120// Set active sheet index to the first sheet, so Excel opens this as the first sheet
121$objPHPExcel->setActiveSheetIndex(0);
122
123
124// Save Excel 2007 file
125echo date('H:i:s') , " Write to Excel2007 format" , EOL;
126$callStartTime = microtime(true);
127
129$objWriter->save(str_replace('.php', '.xlsx', __FILE__));
130$callEndTime = microtime(true);
132
133echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
134echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
135// Echo memory usage
136echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
137
138
139// Save Excel 95 file
140echo date('H:i:s') , " Write to Excel5 format" , EOL;
141$callStartTime = microtime(true);
142
144$objWriter->save(str_replace('.php', '.xls', __FILE__));
145$callEndTime = microtime(true);
147
148echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
149echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
150// Echo memory usage
151echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
152
153
154// Echo memory peak usage
155echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
156
157// Echo done
158echo date('H:i:s') , " Done writing files" , EOL;
159echo 'Files have been created in ' , getcwd() , EOL;
date( 'd-M-Y', $objPHPExcel->getProperties() ->getCreated())
$wizard
Definition: 42richText.php:86
memory_get_peak_usage(true)/1024/1024)
Definition: 42richText.php:155
const EOL
Definition: 42richText.php:34
$callEndTime
Definition: 42richText.php:130
$callTime
Definition: 42richText.php:131
$html3
Definition: 42richText.php:81
$richText
Definition: 42richText.php:87
$html1
Definition: 42richText.php:58
$callStartTime
Definition: 42richText.php:126
$html2
Definition: 42richText.php:71
memory_get_usage(true)/1024/1024)
Definition: 42richText.php:136
$html4
Definition: 42richText.php:83
$objWriter
Definition: 42richText.php:128
$objPHPExcel
Definition: 42richText.php:42
sprintf('%.4f', $callTime)
Definition: 42richText.php:134
An exception for terminatinating execution or to throw for unit testing.
static createWriter(PHPExcel $phpExcel, $writerType='')
Create PHPExcel_Writer_IWriter.
Definition: IOFactory.php:132