29error_reporting(E_ALL);
30ini_set(
'display_errors', TRUE);
31ini_set(
'display_startup_errors', TRUE);
32date_default_timezone_set(
'Europe/London');
34define(
'EOL',(PHP_SAPI ==
'cli') ?
PHP_EOL :
'<br />');
37require_once dirname(__FILE__) .
'/../Classes/PHPExcel.php';
41echo
date(
'H:i:s') ,
" Create new PHPExcel object" ,
EOL;
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");
56echo
date(
'H:i:s') ,
" Add some data" ,
EOL;
59<h1 align="center">My very first example of rich text<br />generated from html markup</h1>
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>.
66<p align="right"><font size="9" color="red">
67I want to eat <ins><del>healthy food</del><strong>pizza</strong></ins>.
73 100°C is a hot temperature
83$html4=
'H<sub>2</sub>SO<sub>4</sub> is the chemical formula for Sulphuric acid';
92$objPHPExcel->getActiveSheet()->getColumnDimension(
'A')->setWidth(48);
93$objPHPExcel->getActiveSheet()->getRowDimension(1)->setRowHeight(-1);
103$objPHPExcel->getActiveSheet()->getRowDimension(1)->setRowHeight(-1);
116echo
date(
'H:i:s') ,
" Rename worksheet" ,
EOL;
125echo
date(
'H:i:s') ,
" Write to Excel2007 format" ,
EOL;
129$objWriter->save(str_replace(
'.php',
'.xlsx', __FILE__));
133echo
date(
'H:i:s') ,
" File written to " , str_replace(
'.php',
'.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) ,
EOL;
140echo
date(
'H:i:s') ,
" Write to Excel5 format" ,
EOL;
144$objWriter->save(str_replace(
'.php',
'.xls', __FILE__));
148echo
date(
'H:i:s') ,
" File written to " , str_replace(
'.php',
'.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) ,
EOL;
158echo
date(
'H:i:s') ,
" Done writing files" ,
EOL;
159echo
'Files have been created in ' , getcwd() ,
EOL;
date( 'd-M-Y', $objPHPExcel->getProperties() ->getCreated())
memory_get_peak_usage(true)/1024/1024)
memory_get_usage(true)/1024/1024)
sprintf('%.4f', $callTime)
An exception for terminatinating execution or to throw for unit testing.
static createWriter(PHPExcel $phpExcel, $writerType='')
Create PHPExcel_Writer_IWriter.