ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
23sharedstyles.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
36date_default_timezone_set('Europe/London');
37
39require_once dirname(__FILE__) . '/../Classes/PHPExcel.php';
40
41
42// Create new PHPExcel object
43echo date('H:i:s') , " Create new PHPExcel object" , EOL;
45
46// Set document properties
47echo date('H:i:s') , " Set document properties" , EOL;
48$objPHPExcel->getProperties()->setCreator("Maarten Balliauw")
49 ->setLastModifiedBy("Maarten Balliauw")
50 ->setTitle("Office 2007 XLSX Test Document")
51 ->setSubject("Office 2007 XLSX Test Document")
52 ->setDescription("Test document for Office 2007 XLSX, generated using PHP classes.")
53 ->setKeywords("office 2007 openxml php")
54 ->setCategory("Test result file");
55
56
57// Add some data
58echo date('H:i:s') , " Add some data" , EOL;
59$objPHPExcel->setActiveSheetIndex(0);
60
63
64$sharedStyle1->applyFromArray(
65 array('fill' => array(
67 'color' => array('argb' => 'FFCCFFCC')
68 ),
69 'borders' => array(
70 'bottom' => array('style' => PHPExcel_Style_Border::BORDER_THIN),
71 'right' => array('style' => PHPExcel_Style_Border::BORDER_MEDIUM)
72 )
73 ));
74
75$sharedStyle2->applyFromArray(
76 array('fill' => array(
78 'color' => array('argb' => 'FFFFFF00')
79 ),
80 'borders' => array(
81 'bottom' => array('style' => PHPExcel_Style_Border::BORDER_THIN),
82 'right' => array('style' => PHPExcel_Style_Border::BORDER_MEDIUM)
83 )
84 ));
85
86$objPHPExcel->getActiveSheet()->setSharedStyle($sharedStyle1, "A1:T100");
87$objPHPExcel->getActiveSheet()->setSharedStyle($sharedStyle2, "C5:R95");
88
89// Save Excel 2007 file
90echo date('H:i:s') , " Write to Excel2007 format" , EOL;
91$callStartTime = microtime(true);
92
94$objWriter->save(str_replace('.php', '.xlsx', __FILE__));
95$callEndTime = microtime(true);
97
98echo date('H:i:s') , " File written to " , str_replace('.php', '.xlsx', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
99echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
100// Echo memory usage
101echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
102
103
104// Save Excel 95 file
105echo date('H:i:s') , " Write to Excel5 format" , EOL;
106$callStartTime = microtime(true);
107
109$objWriter->save(str_replace('.php', '.xls', __FILE__));
110$callEndTime = microtime(true);
112
113echo date('H:i:s') , " File written to " , str_replace('.php', '.xls', pathinfo(__FILE__, PATHINFO_BASENAME)) , EOL;
114echo 'Call time to write Workbook was ' , sprintf('%.4f',$callTime) , " seconds" , EOL;
115// Echo memory usage
116echo date('H:i:s') , ' Current memory usage: ' , (memory_get_usage(true) / 1024 / 1024) , " MB" , EOL;
117
118
119// Echo memory peak usage
120echo date('H:i:s') , " Peak memory usage: " , (memory_get_peak_usage(true) / 1024 / 1024) , " MB" , EOL;
121
122// Echo done
123echo date('H:i:s') , " Done writing file" , EOL;
124echo 'File has been created in ' , getcwd() , EOL;
memory_get_peak_usage(true)/1024/1024)
const EOL
$callEndTime
$callTime
$sharedStyle2
$callStartTime
memory_get_usage(true)/1024/1024)
$objWriter
$objPHPExcel
$sharedStyle1
sprintf('%.4f', $callTime)
date( 'd-M-Y', $objPHPExcel->getProperties() ->getCreated())
An exception for terminatinating execution or to throw for unit testing.
static createWriter(PHPExcel $phpExcel, $writerType='')
Create PHPExcel_Writer_IWriter.
Definition: IOFactory.php:132
const FILL_SOLID
Definition: Fill.php:40